GoogleCloudRunV2ExecutionReference.fromJson constructor

GoogleCloudRunV2ExecutionReference.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2ExecutionReference.fromJson(core.Map json_)
    : this(
        completionTime: json_.containsKey('completionTime')
            ? json_['completionTime'] as core.String
            : null,
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );