AudioDevices.fromJson constructor

AudioDevices.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AudioDevices.fromJson(Map<String, dynamic> json) => AudioDevices(
      id: json["id"],
      type: json["type"],
      name: json["name"],
    );