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