@override bool operator ==(obj) { StringList? other = obj is StringList ? obj : null; if (other != null) { return this.toString() == other.toString(); } else { return false; } }