copyWith method
InstitutionsGetResponse
copyWith({
- List<
Institution> ? institutions, - int? total,
- String? requestId,
Implementation
InstitutionsGetResponse copyWith(
{List<Institution>? institutions, int? total, String? requestId}) {
return InstitutionsGetResponse(
institutions: institutions ?? this.institutions,
total: total ?? this.total,
requestId: requestId ?? this.requestId);
}