GetTestGridSessionResult.fromJson constructor
Implementation
factory GetTestGridSessionResult.fromJson(Map<String, dynamic> json) {
return GetTestGridSessionResult(
testGridSession: json['testGridSession'] != null
? TestGridSession.fromJson(
json['testGridSession'] as Map<String, dynamic>)
: null,
);
}