copyWith method

InstitutionsGetByIdResponse copyWith({
  1. Institution? institution,
  2. String? requestId,
})

Implementation

InstitutionsGetByIdResponse copyWith(
    {Institution? institution, String? requestId}) {
  return InstitutionsGetByIdResponse(
      institution: institution ?? this.institution,
      requestId: requestId ?? this.requestId);
}