1234567891011121314151617 |
- import 'package:flutter/foundation.dart';
- import 'package:flutter/services.dart';
- import 'compdfkit_flutter_platform_interface.dart';
- /// An implementation of [CompdfkitFlutterPlatform] that uses method channels.
- class MethodChannelCompdfkitFlutter extends CompdfkitFlutterPlatform {
- /// The method channel used to interact with the native platform.
- @visibleForTesting
- final methodChannel = const MethodChannel('compdfkit_flutter');
- @override
- Future<String?> getPlatformVersion() async {
- final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
- return version;
- }
- }
|