DeviceModel.fromMap constructor

DeviceModel.fromMap(
  1. Map<String, dynamic> map
)

Implementation

DeviceModel.fromMap(super.map)
    : id = map.getString(idTag)!,
      status = map.getBool(statusTag)!,
      description = map.getString(descriptionTag),
      super.fromMap();