TextFieldWidget constructor

const TextFieldWidget({
  1. Key? key,
  2. TextFieldItem? fieldItem,
  3. OnTextFieldListener? fieldListener,
  4. OnFieldCall? fieldCall,
  5. EdgeInsetsGeometry? margin,
  6. String? defaultText,
  7. double? textMenuItemWidth,
  8. double? textMenuItemHeight,
  9. OnTextMenuItemClick? menuItemClick,
  10. Color? menuIconColor,
})

Implementation

const TextFieldWidget(
    {Key? key,
    this.fieldItem,
    this.fieldListener,
    this.fieldCall,
    this.margin,
    this.defaultText,
    this.textMenuItemWidth,
    this.textMenuItemHeight,
    this.menuItemClick,
    this.menuIconColor})
    : super(key: key);