AppFieldLable constructor

const AppFieldLable({
  1. Key? key,
  2. String text = '',
  3. TextStyle? textStyle,
  4. bool optional = false,
})

Implementation

const AppFieldLable({
  Key? key,
  this.text = '',
  this.textStyle,
  this.optional = false,
}) : super(key: key);