openKYC static method

Future openKYC()

Implementation

static Future<dynamic> openKYC() async {
  final rs = await _channel.invokeMethod('openKYC');
  if (Platform.isAndroid && rs is String) {
    return jsonDecode(rs);
  }
  return rs;
}