onChild method

Widget onChild()

Override to place a different child in the Dismissible.

Implementation

Widget onChild() {
  return Container(
      decoration: BoxDecoration(
          color: _theme!.canvasColor,
          border: Border(bottom: BorderSide(color: _theme!.dividerColor))),
      child: listTile);
}