flutter plugin for zebra multiplatform sdk

flutter_zsdk_method_channel.dart 586B

123456789101112131415161718
  1. import 'package:flutter/foundation.dart';
  2. import 'package:flutter/services.dart';
  3. import 'flutter_zsdk_platform_interface.dart';
  4. /// An implementation of [FlutterZsdkPlatform] that uses method channels.
  5. class MethodChannelFlutterZsdk extends FlutterZsdkPlatform {
  6. /// The method channel used to interact with the native platform.
  7. @visibleForTesting
  8. final methodChannel = const MethodChannel('flutter_zsdk');
  9. @override
  10. Future<String?> getPlatformVersion() async {
  11. final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
  12. return version;
  13. }
  14. }