getCoreUtilsKeyboardUtilsTemplate function

String getCoreUtilsKeyboardUtilsTemplate(
  1. String projectName
)

Implementation

String getCoreUtilsKeyboardUtilsTemplate(String projectName) {
  return '''
import 'package:flutter/material.dart';

class KeyboardUtils {
  static void hideKeyboard(BuildContext context) {
    FocusScope.of(context).unfocus();
  }
}
''';
}