makeInterceptor static method
Create a new Interceptor.
Implementation
static Future<void> makeInterceptor(
String className,
String value, {
String folderPath = networkingInterceptorsFolder,
bool forceCreate = false,
String? creationPath,
}) async {
String name = className.replaceAll(RegExp(r'(_?interceptor)'), "");
// create missing directories in the project
await _makeDirectory(folderPath);
await createDirectoriesFromCreationPath(creationPath, folderPath);
// create file path
String filePath = createPathForDartFile(
folderPath: folderPath,
className: name,
prefix: 'interceptor',
creationPath: creationPath,
);
await _checkIfFileExists(filePath, shouldForceCreate: forceCreate);
await _createNewFile(
filePath,
value,
onSuccess: () {
final linkText = '${name.snakeCase}_interceptor';
final link = MetroConsole.hyperlink(linkText, filePath);
MetroConsole.writeInGreen('[Interceptor] $link created 🎉');
},
);
}