validate method

Future<bool> validate()

validate

will return true if transaction completed otherwise false

Implementation

Future<bool> validate() async {
  var result = await this.check();
  return (result.status == 0);
}