copyWith method

  1. @override
InternalLinkTypeUserToken copyWith({
  1. String? token,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
InternalLinkTypeUserToken copyWith({
  String? token,
  dynamic extra,
  int? clientId,
}) =>
    InternalLinkTypeUserToken(
      token: token ?? this.token,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );