CreateInputResponse.fromJson constructor

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

Implementation

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