OutputConfig.fromJson constructor

OutputConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory OutputConfig.fromJson(Map<String, dynamic> json) {
  return OutputConfig(
    gcsDestination: decode(json['gcsDestination'], GcsDestination.fromJson),
  );
}