ProfileView constructor

ProfileView(
  1. Map map
)

Implementation

ProfileView(Map map)
    : description = map["description"],
      indexedAt = map["indexedAt"] == null
          ? null
          : DateTime.parse((map["indexedAt"])),
      super(map);