1234567891011121314151617181920212223242526272829 |
- import 'package:plugin_platform_interface/plugin_platform_interface.dart';
- import 'compdfkit_flutter_method_channel.dart';
- abstract class CompdfkitFlutterPlatform extends PlatformInterface {
- /// Constructs a CompdfkitFlutterPlatform.
- CompdfkitFlutterPlatform() : super(token: _token);
- static final Object _token = Object();
- static CompdfkitFlutterPlatform _instance = MethodChannelCompdfkitFlutter();
- /// The default instance of [CompdfkitFlutterPlatform] to use.
- ///
- /// Defaults to [MethodChannelCompdfkitFlutter].
- static CompdfkitFlutterPlatform get instance => _instance;
- /// Platform-specific implementations should set this with their own
- /// platform-specific class that extends [CompdfkitFlutterPlatform] when
- /// they register themselves.
- static set instance(CompdfkitFlutterPlatform instance) {
- PlatformInterface.verifyToken(instance, _token);
- _instance = instance;
- }
- Future<String?> getPlatformVersion() {
- throw UnimplementedError('platformVersion() has not been implemented.');
- }
- }
|