data property

String data

The channel data.

Implementation

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

Implementation

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