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