@@ -281,7 +281,7 @@ class Person {
281281 final String name = '';
282282
283283 @override
284- operator ==(Object? other) =>
284+ operator ==(Object other) =>
285285 other != null &&
286286 other is Person &&
287287 name == other.name;
@@ -292,7 +292,7 @@ class Person {
292292 final String name = '';
293293
294294 @override
295- operator ==(Object? other) =>
295+ operator ==(Object other) =>
296296 other is Person &&
297297 name == other.name;
298298}
@@ -305,7 +305,7 @@ class Person {
305305 final String name = '';
306306
307307 @override
308- operator ==(Object? other) {
308+ operator ==(Object other) {
309309 return other != null &&
310310 other is Person &&
311311 name == other.name;
@@ -317,7 +317,7 @@ class Person {
317317 final String name = '';
318318
319319 @override
320- operator ==(Object? other) {
320+ operator ==(Object other) {
321321 return other is Person &&
322322 name == other.name;
323323 }
@@ -331,7 +331,7 @@ class Person {
331331 final String name = '';
332332
333333 @override
334- operator ==(Object? other) {
334+ operator ==(Object other) {
335335 if (other is! Person) return false;
336336 other ??= Person();
337337 return other.name == name;
@@ -349,7 +349,7 @@ class Person {
349349 final String name = '';
350350
351351 @override
352- operator ==(Object? other) {
352+ operator ==(Object other) {
353353 if (other is! Person) return false;
354354 final toCompare = other ?? Person();
355355 return toCompare.name == name;
@@ -362,7 +362,7 @@ class Person {
362362 final String name = '';
363363
364364 @override
365- operator ==(Object? other) {
365+ operator ==(Object other) {
366366 if (other is! Person) return false;
367367 final toCompare = other;
368368 return toCompare.name == name;
@@ -381,7 +381,7 @@ class Person {
381381 final String name = '';
382382
383383 @override
384- operator ==(Object? other) {
384+ operator ==(Object other) {
385385 if (other == null) return false;
386386 return other is Person &&
387387 name == other.name;
@@ -393,7 +393,7 @@ class Person {
393393 final String name = '';
394394
395395 @override
396- operator ==(Object? other) {
396+ operator ==(Object other) {
397397 return other is Person &&
398398 name == other.name;
399399 }
0 commit comments