progress property
String?
get
progress
Implementation
String? get progress {
if (type == TransactionEventType.transactionProgress) {
return data['progress'] as String?;
}
return null;
}
String? get progress {
if (type == TransactionEventType.transactionProgress) {
return data['progress'] as String?;
}
return null;
}