AFGeneratedFile.fromBuffer constructor
AFGeneratedFile.fromBuffer({
- required List<
String> projectPath, - required AFCodeBuffer buffer,
- required AFGeneratedFileAction action,
Implementation
factory AFGeneratedFile.fromBuffer({
required List<String> projectPath,
required AFCodeBuffer buffer,
required AFGeneratedFileAction action
}) {
return AFGeneratedFile(
projectPath: projectPath,
action: action,
buffer: buffer
);
}