bytedesk-flutter/bytedesk_kefu/ios/Classes/BytedeskKefuPlugin.m

21 lines
724 B

#import "BytedeskKefuPlugin.h"
@implementation BytedeskKefuPlugin
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel = [FlutterMethodChannel
methodChannelWithName:@"bytedesk_kefu"
binaryMessenger:[registrar messenger]];
BytedeskKefuPlugin* instance = [[BytedeskKefuPlugin 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