import 'package:flutter/services.dart'; class Bridge { static const MethodChannel _channel1 = const MethodChannel('bridge'); static Future getStartIntent() async { return await _channel1.invokeMethod('action'); } }