import'package:flutter/foundation.dart';import'package:flutter/services.dart';import'clx_flutter_message_platform_interface.dart';/// An implementation of [ClxFlutterMessagePlatform] that uses method channels.classMethodChannelClxFlutterMessageextendsClxFlutterMessagePlatform{/// The method channel used to interact with the native platform.@visibleForTestingfinalmethodChannel=constMethodChannel('clx_flutter_message');@overrideFuture<String?>getPlatformVersion()async{finalversion=awaitmethodChannel.invokeMethod<String>('getPlatformVersion');returnversion;}}