import'package:plugin_platform_interface/plugin_platform_interface.dart';import'clx_flutter_message_method_channel.dart';abstractclassClxFlutterMessagePlatformextendsPlatformInterface{/// Constructs a ClxFlutterMessagePlatform.ClxFlutterMessagePlatform():super(token:_token);staticfinalObject_token=Object();staticClxFlutterMessagePlatform_instance=MethodChannelClxFlutterMessage();/// The default instance of [ClxFlutterMessagePlatform] to use.////// Defaults to [MethodChannelClxFlutterMessage].staticClxFlutterMessagePlatformgetinstance=>_instance;/// Platform-specific implementations should set this with their own/// platform-specific class that extends [ClxFlutterMessagePlatform] when/// they register themselves.staticsetinstance(ClxFlutterMessagePlatforminstance){PlatformInterface.verifyToken(instance,_token);_instance=instance;}Future<String?>getPlatformVersion(){throwUnimplementedError('platformVersion() has not been implemented.');}}