Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 13, 2018 19:49
Show Gist options
  • Save Rahiche/9e4997eba810c3f696d21ada127b17fd to your computer and use it in GitHub Desktop.
Save Rahiche/9e4997eba810c3f696d21ada127b17fd to your computer and use it in GitHub Desktop.
static bool canUpdate(Widget oldWidget, Widget newWidget) {
return oldWidget.runtimeType == newWidget.runtimeType
&& oldWidget.key == newWidget.key;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment