TextProperties constructor

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

Implementation

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