DeployRequest_CustomModel.fromJson constructor

DeployRequest_CustomModel.fromJson(
  1. Object? j
)

Implementation

factory DeployRequest_CustomModel.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return DeployRequest_CustomModel(
    gcsUri: switch (json['gcsUri']) {
      null => null,
      Object $1 => decodeString($1),
    },
  );
}