SmartHomeBaseResponse constructor

SmartHomeBaseResponse({
  1. String? errorMsg,
  2. String? message,
  3. int? errorCode,
  4. dynamic data,
})

Implementation

SmartHomeBaseResponse({
  this.errorMsg,
  this.message,
  this.errorCode,
  this.data,
});