operator == method

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

Compare Json by instance or by value

Implementation

@override
bool operator ==(Object other) => identical(this, other) || other is Json && toString() == other.toString();