ButtonForm constructor

ButtonForm({
  1. Key? key,
  2. OnChangeCallBack? onChangeCallback,
  3. Control? control,
  4. dynamic colorText = neutral_500,
  5. OnChangeCallBack? onEditingComplete,
})

Implementation

ButtonForm(
    {Key? key,
    this.onChangeCallback,
    this.control,
    colorText = neutral_500,
    this.onEditingComplete})
    : super(key: key);