clearSavedCards static method

Future clearSavedCards()

Implementation

static Future<dynamic> clearSavedCards() async {
  MethodChannel localChannel = MethodChannel('flutter_paytabs_bridge');
  EventChannel localStream =
      const EventChannel('flutter_paytabs_bridge_stream');

  return await localChannel.invokeMethod('clearSavedCards');
}