copyWith method
Implementation
Request$ copyWith(
{String? type, String? requestId, String? locale, DateTime? timestamp}) {
return Request$(
type: type ?? this.type,
requestId: requestId ?? this.requestId,
locale: locale ?? this.locale,
timestamp: timestamp ?? this.timestamp);
}