toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (bucketName != null) 'bucketName': bucketName!,
  if (endpoint != null) 'endpoint': endpoint!,
  if (path != null) 'path': path!,
  if (region != null) 'region': region!,
  if (s3Metadata != null) 's3Metadata': s3Metadata!,
};