BusinessReportS3Location.fromJson constructor

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

Implementation

factory BusinessReportS3Location.fromJson(Map<String, dynamic> json) {
  return BusinessReportS3Location(
    bucketName: json['BucketName'] as String?,
    path: json['Path'] as String?,
  );
}