checkRegisteredCard method
Implementation
@override
Future<CCResult> checkRegisteredCard() async {
try {
final result = await methodChannel.invokeMethod('check_registered_card');
return CCResult.fromMap(result);
} on PlatformException catch (e) {
return CCResult(
status: Status.ERROR, message: e.message ?? 'an error occurred');
}
}