AudioCodecOptions.fromJson constructor

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

Implementation

factory AudioCodecOptions.fromJson(Map<String, dynamic> json) {
  return AudioCodecOptions(
    bitDepth: json['BitDepth'] as String?,
    bitOrder: json['BitOrder'] as String?,
    profile: json['Profile'] as String?,
    signed: json['Signed'] as String?,
  );
}