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