StoneResponse constructor

StoneResponse({
  1. String? method,
  2. String? errorMessage,
  3. String? message,
  4. int? result,
})

Implementation

StoneResponse({
  this.method,
  this.errorMessage,
  this.message,
  this.result,
});