fromDynamic static method

ListDevicesCommand fromDynamic(
  1. dynamic map,
  2. String id,
  3. DateTime timestamp
)
override

Deserializes the command from a Map or a map-like object into the the proper data model. This will throw an exception if map is null.

Implementation

static ListDevicesCommand fromDynamic(
  dynamic map,
  String id,
  DateTime timestamp,
) {
  late ListDevicesCommand result;

  if (map == null) {
    throw Exception('[ListDevicesCommand.fromDynamic]: map is null');
  } else {
    result = ListDevicesCommand(
      availableOnly: JsonClass.parseBool(map['availableOnly']),
      id: id,
      timestamp: timestamp,
    );
  }

  return result;
}