Audio.fromJson constructor

Audio.fromJson(
  1. Map json_
)

Implementation

Audio.fromJson(core.Map json_)
    : this(
        highBoost: json_['highBoost'] as core.bool?,
        lowBoost: json_['lowBoost'] as core.bool?,
        lufs: (json_['lufs'] as core.num?)?.toDouble(),
      );