InputChannelLevel.fromJson constructor

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

Implementation

factory InputChannelLevel.fromJson(Map<String, dynamic> json) {
  return InputChannelLevel(
    gain: json['gain'] as int,
    inputChannel: json['inputChannel'] as int,
  );
}