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,
      );