getCoreUtilsKeyboardUtilsTemplate function
Implementation
String getCoreUtilsKeyboardUtilsTemplate(String projectName) {
return '''
import 'package:flutter/material.dart';
class KeyboardUtils {
static void hideKeyboard(BuildContext context) {
FocusScope.of(context).unfocus();
}
}
''';
}