import'package:plugin_platform_interface/plugin_platform_interface.dart';import'apk_update_method_channel.dart';abstractclassApkUpdatePlatformextendsPlatformInterface{/// Constructs a ApkUpdatePlatform.ApkUpdatePlatform():super(token:_token);staticfinalObject_token=Object();staticApkUpdatePlatform_instance=MethodChannelApkUpdate();/// The default instance of [ApkUpdatePlatform] to use.////// Defaults to [MethodChannelApkUpdate].staticApkUpdatePlatformgetinstance=>_instance;/// Platform-specific implementations should set this with their own/// platform-specific class that extends [ApkUpdatePlatform] when/// they register themselves.staticsetinstance(ApkUpdatePlatforminstance){PlatformInterface.verifyToken(instance,_token);_instance=instance;}voidjumpAppStore(StringappleId){throwUnimplementedError('jumpAppStore() has not been implemented.');}voidinstallApk(String?path){throwUnimplementedError('installApk() has not been implemented.');}}