repositoryImpl method

Future<String> repositoryImpl(
  1. String feature
)

Implementation

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