setData method

void setData(
  1. T data
)

Implementation

void setData(T data) {
  super.onNotifyWithCallback(() {
    this.data = data;
  });
}