lightGreyBackground method

Container lightGreyBackground({
  1. required BuildContext context,
})

Implementation

Container lightGreyBackground({required BuildContext context}) => Container(
      decoration: BoxDecoration(
        color: getColorByTheme(
          context: context,
          colorClass: AppColors.lightGreyColor,
        ),
      ),
      padding: EdgeInsets.zero,
      margin: EdgeInsets.zero,
      child: this,
    );