TransactionLastObject constructor

TransactionLastObject({
  1. String? hash,
  2. String? token,
})

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;
}