isWeworkInstalled static method

Future isWeworkInstalled()

Implementation

static Future<dynamic> isWeworkInstalled() async {
  final String result = await _channel.invokeMethod('isWeworkInstalled');
  print('isWeworkInstalled result: $result');
  return result;
}