clear method

  1. @override
void clear()
override

Sets all the attributes values to null.

Implementation

@override
void clear() {
  this.forEach((key, value) => this[key] = null);
}