TwoTonedChip constructor

const TwoTonedChip({
  1. Key? key,
  2. required Widget left,
  3. required Widget right,
  4. double? height,
  5. double? width,
  6. Color? leftColor,
  7. Color? rightColor,
})

Implementation

const TwoTonedChip({
  super.key,
  required this.left,
  required this.right,
  this.height,
  this.width,
  this.leftColor,
  this.rightColor,
});