import 'package:flutter/foundation.dart'; import 'package:flutter/services.dart'; import 'rtc_sdk_platform_interface.dart'; /// An implementation of [RtcSdkPlatform] that uses method channels. class MethodChannelRtcSdk extends RtcSdkPlatform { /// The method channel used to interact with the native platform. @visibleForTesting final methodChannel = const MethodChannel('rtc_sdk'); @override Future getPlatformVersion() async { final version = await methodChannel.invokeMethod('getPlatformVersion'); return version; } }