TestGoldengateConnectionAssignmentResponse.fromJson constructor
TestGoldengateConnectionAssignmentResponse.fromJson(
- Map json_
Implementation
TestGoldengateConnectionAssignmentResponse.fromJson(core.Map json_)
: this(
error: json_.containsKey('error')
? TestConnectionAssignmentError.fromJson(
json_['error'] as core.Map<core.String, core.dynamic>,
)
: null,
errors: (json_['errors'] as core.List?)
?.map(
(value) => TestConnectionAssignmentError.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
resultType: json_['resultType'] as core.String?,
);