copyWith method

TestVectorInt copyWith({
  1. List<int>? value,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

TestVectorInt copyWith({
  List<int>? value,
  dynamic extra,
  int? clientId,
}) =>
    TestVectorInt(
      value: value ?? this.value,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );