equivalentTo method

  1. @override
bool equivalentTo(
  1. Data other
)
override

Returns true if the appName is equal.

Implementation

@override
bool equivalentTo(Data other) =>
    (other is ApplicationInformation) ? appName == other.appName : false;