#import "NullText.h"

@implementation NullText

- (instancetype)init {
    self = [super initWithValue:nil];
    return self;
}

@end
