update method
Update theme data using a function
Implementation
void update(FlyThemeData Function(FlyThemeData current) updater) {
final updated = updater(_data);
if (_data != updated) {
_data = updated;
notifyListeners();
}
}
Update theme data using a function
void update(FlyThemeData Function(FlyThemeData current) updater) {
final updated = updater(_data);
if (_data != updated) {
_data = updated;
notifyListeners();
}
}