OperationToken constructor

OperationToken(
  1. String tokenHash,
  2. int creationTime,
  3. int validity,
  4. Operation operation, {
  5. String? description,
})

Implementation

OperationToken(
	this.tokenHash,
	this.creationTime,
	this.validity,
	this.operation,
	{
		String? description
	}) : description = description ?? null;