S3Destination.fromJson constructor

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

Implementation

factory S3Destination.fromJson(Map<String, dynamic> json) {
  return S3Destination(
    bucket: json['bucket'] as String?,
    prefix: json['prefix'] as String?,
  );
}