UpdateInputResponse.fromJson constructor
Implementation
factory UpdateInputResponse.fromJson(Map<String, dynamic> json) {
return UpdateInputResponse(
inputConfiguration: json['inputConfiguration'] != null
? InputConfiguration.fromJson(
json['inputConfiguration'] as Map<String, dynamic>)
: null,
);
}