blob: f6a42fab367fc40a4bc5abe0bffa42a91dfa78e0 [file] [log] [blame]
#import "GoogleMobileMapsPlugin.h"
@implementation FLTGoogleMobileMapsPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel =
[FlutterMethodChannel methodChannelWithName:@"google_mobile_maps"
binaryMessenger:[registrar messenger]];
FLTGoogleMobileMapsPlugin* instance = [[FLTGoogleMobileMapsPlugin 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