TotalSize constructor

const TotalSize({
  1. required double weight,
  2. required double fixed,
})

Implementation

const TotalSize({
  required this.weight,
  required this.fixed,
});