NeoOrbSubmitButton<T> constructor

const NeoOrbSubmitButton<T>({
  1. Key? key,
  2. required String label,
  3. required Future<T?> onSubmit(),
  4. required ValueChanged<T> onSuccess,
})

Implementation

const NeoOrbSubmitButton({
  super.key,
  required this.label,
  required this.onSubmit,
  required this.onSuccess,
});