This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class FastEquatable extends Equatable { | |
const FastEquatable(); | |
@override | |
bool operator ==(Object other) { | |
return identical(this, other) || | |
other is FastEquatable && | |
other.runtimeType == runtimeType && | |
fastEquals(props, other.props); | |
} |