Marks Dart and Flutter Blog

Using Mixins in Google Dart / Google Flutter
Using Mixins in Google Dart / Google Flutter
As mentioned at the start of this book, a Mixin is a class that contains methods for use by other classes without it having to be the parent class of... Read more...
Testing Objects for Equality in Google Dart
Testing Objects for Equality in Google Dart
In Dart, you compare equality using the ‘==’ operator rather than an ‘equals’ method. Sometimes you need to override it this operator in your class to ensure that instances of... Read more...