homeModelTemplate top-level constant
String
const homeModelTemplate
Implementation
const String homeModelTemplate = '''
class HomeModel {
final String title;
final String subtitle;
const HomeModel({required this.title, required this.subtitle});
}
''';