muted function
        
Widget
muted({ 
    
    
- required String text,
- required BuildContext context,
- Color? color,
- int? maxLines,
- double? width,
- EdgeInsetsGeometry? padding,
Implementation
Widget muted({
  required String text,
  required BuildContext context,
  Color? color,
  int? maxLines,
  double? width,
  EdgeInsetsGeometry? padding,
}) =>
    Padding(
      padding: padding ?? EdgeInsets.zero,
      child: SizedBox(
        width: width,
        child: Text(
          text,
          style: Theme.of(context).textTheme.bodyText2!.copyWith(
                color: color ?? Colors.black54,
                overflow: TextOverflow.ellipsis,
              ),
          maxLines: maxLines,
        ),
      ),
    );