operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

The equality operator.

Implementation

@override
bool operator ==(Object other) {
  if (identical(this, other)) return true;
  if (other.runtimeType != runtimeType) return false;
  return other is FilesystemPickerTheme &&
      other._topBar == _topBar &&
      other._messageTextStyle == _messageTextStyle &&
      other._fileList == _fileList &&
      other._pickerAction == _pickerAction &&
      other._contextActions == _contextActions;
}