getInjectionContainerStatement method

String getInjectionContainerStatement({
  1. required String pascalCaseFeatureName,
})

Implementation

String getInjectionContainerStatement({
  required String pascalCaseFeatureName,
}) =>
    "\nsl.registerLazySingleton<${pascalCaseFeatureName}DataSource>("
    "() => ${pascalCaseFeatureName}DataSourceImpl(remoteDataSource: sl()),"
    ");";