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