GoogleCloudDatalabelingV1beta1ListInstructionsResponse.fromJson constructor
GoogleCloudDatalabelingV1beta1ListInstructionsResponse.fromJson(
- Map _json
Implementation
GoogleCloudDatalabelingV1beta1ListInstructionsResponse.fromJson(
core.Map _json)
: this(
instructions: _json.containsKey('instructions')
? (_json['instructions'] as core.List)
.map((value) =>
GoogleCloudDatalabelingV1beta1Instruction.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: _json.containsKey('nextPageToken')
? _json['nextPageToken'] as core.String
: null,
);