GoogleCloudRunV2InlinedSource.fromJson constructor
GoogleCloudRunV2InlinedSource.fromJson(
- Map json_
Implementation
GoogleCloudRunV2InlinedSource.fromJson(core.Map json_)
: this(
sources: (json_['sources'] as core.List?)
?.map(
(value) => GoogleCloudRunV2SourceFile.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);