ResendListAudiencesResponse.fromJson constructor
ResendListAudiencesResponse.fromJson(
- Json json
Factory method for creating a ResendListAudiencesResponse instance from a JSON object
Implementation
factory ResendListAudiencesResponse.fromJson(Json json) {
return ResendListAudiencesResponse(
audiences: List<Json>.from(json['data'])
.map((j) => ResendListAudiencesResponseAudience.fromJson(j))
.toList());
}