noDataWidget property

Widget noDataWidget

Implementation

Widget get noDataWidget =>
    widget.noDataWidget ??
    Center(
      child: Text(
        "No data",
        style: TextStyle(color: Colors.red),
      ),
    );