fromJson method

void fromJson(
  1. Map<String, dynamic> json
)
inherited

Initialize from database record

Implementation

void fromJson(Map<String, dynamic> json) {
  _attributes.clear();
  _attributes.addAll(json);
  _computedCache.clear();
  syncOriginal();
}