BlossomTab<T> constructor

BlossomTab<T>({
  1. required String id,
  2. T? data,
  3. String? title,
  4. bool isSticky = false,
  5. double maxSize = 200,
  6. double stickySize = 50,
})

Implementation

BlossomTab({
  required this.id,
  this.data,
  this.title,
  this.isSticky = false,
  this.maxSize = 200,
  this.stickySize = 50,
});