OutputConfig.fromJson constructor

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

Implementation

factory OutputConfig.fromJson(Map<String, dynamic> json) {
  return OutputConfig(
    s3Bucket: json['S3Bucket'] as String?,
    s3KeyPrefix: json['S3KeyPrefix'] as String?,
  );
}