version_utils.dart 347 B

123456789101112131415
  1. import 'package:flutter/services.dart';
  2. class VersionUtils{
  3. static const MethodChannel _channel = const MethodChannel('version');
  4. /// 应用安装
  5. static void install(String path){
  6. _channel.invokeMethod("install", {'path': path});
  7. }
  8. /// AppStore跳转
  9. static void jumpAppStore(){
  10. _channel.invokeMethod("jumpAppStore");
  11. }
  12. }