data property

String get data

The channel data.

Implementation

String get data {
  checkUnsupportedAction();
  return _data;
}
set data (dynamic value)

Implementation

set data(value) {
  checkUnsupportedAction();
  _data = value;
}