TransactionLastObject constructor
Implementation
factory TransactionLastObject({
$core.String? hash,
$core.String? token,
}) {
final _result = create();
if (hash != null) {
_result.hash = hash;
}
if (token != null) {
_result.token = token;
}
return _result;
}