| #import "InAppPurchasePlugin.h" |
| |
| @implementation InAppPurchasePlugin |
| + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar { |
| FlutterMethodChannel* channel = |
| [FlutterMethodChannel methodChannelWithName:@"in_app_purchase" |
| binaryMessenger:[registrar messenger]]; |
| InAppPurchasePlugin* instance = [[InAppPurchasePlugin alloc] init]; |
| [registrar addMethodCallDelegate:instance channel:channel]; |
| } |
| |
| - (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result { |
| if ([@"getPlatformVersion" isEqualToString:call.method]) { |
| result([@"iOS " stringByAppendingString:[[UIDevice currentDevice] systemVersion]]); |
| } else { |
| result(FlutterMethodNotImplemented); |
| } |
| } |
| |
| @end |