S3Target.fromJson constructor
Implementation
factory S3Target.fromJson(Map<String, dynamic> json) {
return S3Target(
connectionName: json['ConnectionName'] as String?,
exclusions: (json['Exclusions'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
path: json['Path'] as String?,
);
}