copyWith method

TransactionMetadataInt copyWith({
  1. BigInt? value,
})

Implementation

TransactionMetadataInt copyWith({BigInt? value}) {
  return TransactionMetadataInt(value: value ?? this.value);
}