copyWith method

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

Implementation

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