matches method
Checks if two widgets match during a ReassemblableNode reassembly.
Implementation
bool matches(final Widget otherWidget) =>
runtimeType == otherWidget.runtimeType && key == otherWidget.key;
Checks if two widgets match during a ReassemblableNode reassembly.
bool matches(final Widget otherWidget) =>
runtimeType == otherWidget.runtimeType && key == otherWidget.key;