getCoreConstantsAppStringsTemplate function
String
getCoreConstantsAppStringsTemplate(
- String projectName
)
Implementation
String getCoreConstantsAppStringsTemplate(String projectName) {
return '''
class AppStrings {
static const appFont = "";
static const signInTitle = "Sign In";
static const login = "Login";
static const signup = "Sign Up";
static const forgotPassword = "Forgot Password";
static const welcome = "Welcome";
static const noInternet = "No Internet Connection";
static const commonError = "Something went wrong, please try again.";
static const lastNameError = "Last name is required";
}
''';
}