ListVoiceConnectorTerminationCredentialsResponse.fromJson constructor
Implementation
factory ListVoiceConnectorTerminationCredentialsResponse.fromJson(
Map<String, dynamic> json) {
return ListVoiceConnectorTerminationCredentialsResponse(
usernames: (json['Usernames'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}