EwelinkErrorResponse constructor

EwelinkErrorResponse({
  1. String msg = '',
  2. String errmsg = '',
  3. required int code,
})

Implementation

EwelinkErrorResponse({
  this.msg = '',
  this.errmsg = '',
  required this.code,
});