copyWith method
Implementation
ApplicationGetResponse copyWith(
{String? requestId, Application? application}) {
return ApplicationGetResponse(
requestId: requestId ?? this.requestId,
application: application ?? this.application);
}