operator == method

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

Equation operator. Compare this instance to the other instance.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is VideoInfo &&
        runtimeType == other.runtimeType &&
        height == other.height &&
        width == other.width &&
        duration == other.duration;