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