react-native-fast-image/ios/FastImage/FFFastImageSource.m

19 lines
361 B
Objective-C

#import "FFFastImageSource.h"
@implementation FFFastImageSource
- (instancetype)initWithURL:(NSURL *)url
priority:(FFFPriority)priority
headers:(NSDictionary *)headers
{
self = [super init];
if (self) {
_uri = url;
_priority = priority;
_headers = headers;
}
return self;
}
@end