GetTestGridSessionResult.fromJson constructor

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

Implementation

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