getBlankUiTemplate function
Implementation
String getBlankUiTemplate({
required String className,
required String isLoading,
String? projectName,
}) {
return '''
CustomBody(
title: "$className",
isLoading: $isLoading,
child: const Center(
child: TextWidget(
text: "$className Page",
textSize: 18,
fontWeight: FontWeight.w500,
),
),
)''';
}