methodChannel property
The method channel used to interact with the native platform.
Implementation
@visibleForTesting
late final methodChannel = const MethodChannel('douyin')
..setMethodCallHandler((call) {
return _handleMethod(call);
});
The method channel used to interact with the native platform.
@visibleForTesting
late final methodChannel = const MethodChannel('douyin')
..setMethodCallHandler((call) {
return _handleMethod(call);
});