copyWith method

NextAction copyWith({
  1. String? url,
  2. String? returnUrl,
})

Implementation

NextAction copyWith({
  String? url,
  String? returnUrl,
}) =>
    NextAction(
      url: url ?? this.url,
      returnUrl: returnUrl ?? this.returnUrl,
    );