operator == method

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

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 FlexAdaptive &&
      other.android == android &&
      other.androidWeb == androidWeb &&
      other.fuchsia == fuchsia &&
      other.fuchsiaWeb == fuchsiaWeb &&
      other.iOS == iOS &&
      other.iOSWeb == iOSWeb &&
      other.linux == linux &&
      other.linuxWeb == linuxWeb &&
      other.macOS == macOS &&
      other.macOSWeb == macOSWeb &&
      other.windows == windows &&
      other.windowsWeb == windowsWeb &&
      other.overrideIsWeb == overrideIsWeb;
}