DeviceListsUpdate.fromJson constructor

DeviceListsUpdate.fromJson(
  1. Map<String, Object?> json
)

Implementation

DeviceListsUpdate.fromJson(Map<String, Object?> json)
  : changed = json.tryGetList<String>('changed') ?? [],
    left = json.tryGetList<String>('left') ?? [];