SharableTextField constructor

SharableTextField({
  1. Key? key,
  2. required String? text,
  3. String? share,
  4. IconData? icon,
  5. String? label,
  6. TextStyle? style,
  7. Widget? trailing,
  8. Widget? leading,
})

Implementation

SharableTextField({
  super.key,
  required String? text,
  this.share,
  this.icon,
  this.label,
  this.style,
  this.trailing,
  this.leading,
}) {
  state = TextFieldState(text: text, editable: false);
}