Buckets constructor

Buckets({
  1. Links? links,
  2. List<Bucket>? buckets = const [],
})

Returns a new Buckets instance.

Implementation

Buckets({
  this.links,
  this.buckets = const [],
});