BucketInfo constructor

const BucketInfo({
  1. required String id,
  2. required String path,
  3. required String? creatorId,
  4. required String createdAt,
  5. required int? maxAllowedSize,
})

Implementation

const BucketInfo({
  required this.id,
  required this.path,
  required this.creatorId,
  required this.createdAt,
  required this.maxAllowedSize,
});