fromJson method

  1. @override
VerificationState fromJson(
  1. Map<String, dynamic> json
)

Implementation

@override
VerificationState fromJson(Map<String, dynamic> json) {
  return VerificationState.fromJson(
    translate(json, VerificationState.knownProps),
  );
}