isShowUnsupportedBanks method

  1. @override
Future<bool> isShowUnsupportedBanks()

Implementation

@override
Future<bool> isShowUnsupportedBanks() async {
  final isShowUnsupportedBanks = await methodChannel
      .invokeMethod<bool>(KevinFlutterAccountsMethods.isShowUnsupportedBanks);
  return isShowUnsupportedBanks!;
}