operator == method

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

Returns true if other is an AssetId with the same package and path.

Implementation

@override
bool operator ==(Object other) =>
    other is AssetId && package == other.package && path == other.path;