No, Item(isLoading: true)
is not a constructor call — it is a pattern match using Dart's record/class pattern matching syntax (available since Dart 3).
example:
var rec = (25, "name", isAdult: false, weight: 60.09);
we can declare a record like this.