import 'package:flutter/foundation.dart'; class FormFieldController extends ValueNotifier { FormFieldController(this.initialValue) : super(initialValue); final T? initialValue; void reset() => value = initialValue; void update() => notifyListeners(); }