Bucket constructor
Bucket({})
Creates a new Bucket instance.
Parameters
id: The unique numeric identifiername: The bucket namedescription: Optional descriptioncreatedAt: Creation timestamp
Implementation
Bucket({
required this.id,
required this.name,
this.description,
required this.createdAt,
});