copyWith method

Request$ copyWith({
  1. String? type,
  2. String? requestId,
  3. String? locale,
  4. DateTime? timestamp,
})

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);
}