fromJson method

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

Implementation

@override
USubjectViewProfile fromJson(Map<String, dynamic> json) {
  try {
    return USubjectViewProfile.unknown(data: json);
  } catch (_) {
    return USubjectViewProfile.unknown(data: json);
  }
}