ResendListAudiencesResponse.fromJson constructor

ResendListAudiencesResponse.fromJson(
  1. 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());
}