fromMap static method

dynamic fromMap(
  1. Map? map
)

Implementation

static fromMap(Map? map) {
  return (map == null)
      ? null
      : CoreRealmUser(
          id: map["id"],
          deviceId: map["device_id"],
          profile: StitchUserProfile.fromMap(map['profile'] ?? Map()));
}