SourceCodeVerification.fromJson constructor

SourceCodeVerification.fromJson(
  1. Map<String, dynamic> json
)

Implementation

SourceCodeVerification.fromJson(Map<String, dynamic> json) {
  attemptsRemaining =
      json['FIELD_ATTEMPTS_REMAINING'] ?? INVALID_ATTEMPTS_REMAINING;
  status = _asStatus(json['FIELD_STATUS']);
}