getWalletInfo static method

Future getWalletInfo()

Implementation

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