makeNamer static method
ApprovalNamer
makeNamer(
- String filePath, {
- String? description,
- FileNamerOptions? options,
- bool? addTestName,
Implementation
static ApprovalNamer makeNamer(
String filePath, {
String? description,
FileNamerOptions? options,
bool? addTestName,
}) =>
Namer(
filePath: filePath,
description: description,
options: options,
addTestName: addTestName ?? true,
);