userName method

Widget userName(
  1. BuildContext context
)

Implementation

Widget userName(BuildContext context) => Padding(
      padding: letterPadding,
      child: FittedBox(
        fit: BoxFit.scaleDown,
        child: FlashText(
          title: name, //toFirstLetter,
          style: Theme.of(context).textTheme.titleLarge?.copyWith(
                color: textColor ?? FlashColorConstant.flashGrey808080,
              ),
        ),
      ),
    );