WireCheckBoxViewModel constructor

WireCheckBoxViewModel({
  1. bool status = false,
  2. double borderSideLength = 1.0,
  3. double fontSize = TextStyleBuilder.tinyFontSize,
  4. Color color = ColorPalette.solidBlack,
})

Implementation

WireCheckBoxViewModel({
  this.status = false,
  this.borderSideLength = 1.0,
  this.fontSize = TextStyleBuilder.tinyFontSize,
  this.color = ColorPalette.solidBlack,
});