toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final bucketName = this.bucketName;
  final manifestKey = this.manifestKey;
  final roleArn = this.roleArn;
  return {
    'bucketName': bucketName,
    'manifestKey': manifestKey,
    'roleArn': roleArn,
  };
}