simple property

Widget simple

Implementation

Widget get simple {
  return Container(
    decoration: BoxDecoration(
      color: Theme.of(context).accentColor,
      image: null,
      shape: BoxShape.circle,
    ),
  );
}