ScpResponseControl constructor

ScpResponseControl({
  1. String action = '',
  2. String deviceId = '',
  3. String result = '',
})

Implementation

ScpResponseControl(
    {String action = '', String deviceId = '', String result = ''}) {
  _action = action;
  _deviceId = deviceId;
  _result = result;
}