copyWith method

TransactionMetadataText copyWith({
  1. String? value,
})

Implementation

TransactionMetadataText copyWith({String? value}) {
  return TransactionMetadataText(value: value ?? this.value);
}