Skip to content

Instantly share code, notes, and snippets.

@marcossevilla
Created February 17, 2021 16:40
Show Gist options
  • Save marcossevilla/6cc4b794d34ee674a0e96de3a5baef45 to your computer and use it in GitHub Desktop.
Save marcossevilla/6cc4b794d34ee674a0e96de3a5baef45 to your computer and use it in GitHub Desktop.
class NamesNotifier extends StateNotifier<List<String>> {
NamesNotifier([List<String>? initialNames]) : super(initialNames ?? []);
void add(String newName) {
state = [...state, newName];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment