copyWith method

  1. @override
CanTransferOwnershipResultOk copyWith({
  1. dynamic extra,
  2. int? clientId,
})
override

Implementation

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