SignResponse constructor

SignResponse({
  1. required bool success,
  2. String? result,
  3. String? error,
})

Implementation

SignResponse({
  required this.success,
  this.result,
  this.error,
});