SimpleTextFieldLabel constructor

const SimpleTextFieldLabel(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. TextStyle? asterStyle,
  5. EdgeInsetsGeometry padding = const EdgeInsets.only(top: 16.0, bottom: 8.0),
  6. bool important = false,
})

Implementation

const SimpleTextFieldLabel(
  this.text, {
  Key? key,
  this.style,
  this.asterStyle,
  this.padding = const EdgeInsets.only(top: 16.0, bottom: 8.0),
  this.important = false,
}) : super(key: key);