ButtonProperties constructor

const ButtonProperties({
  1. required String text,
  2. String? textColorHex,
  3. String? textSize,
  4. bool? textAllCaps,
  5. bool? fillMaxSize,
  6. String? backgroundHex,
  7. ActionProperties? actionProperties,
})

Implementation

const ButtonProperties({
  required this.text,
  this.textColorHex,
  this.textSize,
  this.textAllCaps,
  this.fillMaxSize,
  this.backgroundHex,
  this.actionProperties
});