Skip to content

Instantly share code, notes, and snippets.

@xinthink
Created March 5, 2020 09:37
Show Gist options
  • Save xinthink/273c2e989febb8d7cb6cbc649b409a44 to your computer and use it in GitHub Desktop.
Save xinthink/273c2e989febb8d7cb6cbc649b409a44 to your computer and use it in GitHub Desktop.
class Note extends ChangeNotifier {
...
/// Update specified properties and notify the listeners
void updateWith({
String title,
String content,
Color color,
NoteState state,
}) {
...
notifyListeners();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment