final class LPCodec { final String mimeType; final int clockRate; final bool enabled; const LPCodec(this.mimeType, this.clockRate, this.enabled); factory LPCodec.fromJson(Map json) => LPCodec(json["mimeType"], json["clockRate"], json["enabled"]); }