forceFill method

T forceFill(
  1. Map<String, dynamic> attributes
)
inherited

Force fill the model with an array of attributes.

Implementation

T forceFill(Map<String, dynamic> attributes) {
  for (final key in attributes.keys) {
    setAttribute(key, attributes[key]);
  }
  return this as T;
}