resumeReadID method

Future<ReadIDResult> resumeReadID()

Implementation

Future<ReadIDResult> resumeReadID() {
  return Future.sync(() {
    return ReadIDPlatform.instance.resumeReadID();
  }).catchError((error) {
    if (error is PlatformException && error.details != null) {
      throw Failure.fromJson(Map<String, dynamic>.from(error.details));
    }
    throw error;
  });
}