#import "NullImage.h"

@implementation NullImage

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

    return self;
}

@end
