SDNDeviceKeys.fromJson constructor

  1. @override
SDNDeviceKeys.fromJson(
  1. Map<String, Object?> json
)

Implementation

@override
SDNDeviceKeys.fromJson(Map<String, Object?> json)
    : algorithms = json.tryGetList<String>('algorithms') ?? [],
      deviceId = json['device_id'] as String,
      super.fromJson(json);