transactionId property
String?
get
transactionId
Returns the transaction id.
Implementation
String? get transactionId => this['x-transaction-id'];
set
transactionId
(String? value)
Sets the transaction id.
Implementation
set transactionId(String? value) {
if (value != null && value.isNotEmpty) {
this['x-transaction-id'] = value;
}
}