repositoryImpl method
Implementation
Future<String> repositoryImpl(String feature) {
return trying(
reader.read(
'data_repository',
namedArgs: {
'app': Info.appName,
'feature': feature,
'featureCamelCase': InputConverter.stringToCamelCase(feature),
},
),
);
}