CancelTestMatrixResponse.fromJson constructor

CancelTestMatrixResponse.fromJson(
  1. Map _json
)

Implementation

CancelTestMatrixResponse.fromJson(core.Map _json)
    : this(
        testState: _json.containsKey('testState')
            ? _json['testState'] as core.String
            : null,
      );