copyWith method

  1. @override
UpdateUser copyWith({
  1. User? user,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateUser copyWith({
  User? user,
  dynamic extra,
  int? clientId,
}) => UpdateUser(
  user: user ?? this.user,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);