setRawData method

void setRawData(
  1. DatabaseExecutor executor,
  2. Map<String, dynamic> raw
)

Sets the database executor and raw attributes for this model instance.

Implementation

void setRawData(DatabaseExecutor executor, Map<String, dynamic> raw) {
  _executor = executor;
  _rawAttributes = raw;
}