ButtonWidget.fromValue constructor

ButtonWidget.fromValue({
  1. required String titulo,
  2. required ButomType tipo,
  3. required dynamic onChanged(),
  4. double? maxWidth,
  5. Color? colorTexto,
  6. Color? borderColor,
})

Implementation

factory ButtonWidget.fromValue({
  required String titulo,
  required ButomType tipo,
  required Function() onChanged,
  double? maxWidth,
  Color? colorTexto,
  Color? borderColor,
}) = _ButtonFromValueWidget;