Custom lintsprefer_firstOn this pageprefer_firstWarns about usage of iterable[0] or iterable.elementAt(0) instead of iterable.first. Example BAD: final a = [1, 2, 3];a[0]; // LINTa.elementAt(0); // LINT GOOD: final a = [1, 2, 3];a.first; // OK