GetVoicesV2ResponseModel constructor

const GetVoicesV2ResponseModel({
  1. required List<VoiceResponseModel> voices,
  2. required bool hasMore,
  3. required int totalCount,
  4. dynamic nextPageToken,
})

Implementation

const GetVoicesV2ResponseModel({
  required this.voices,
  required this.hasMore,
  required this.totalCount,
  this.nextPageToken,
});