InputFile constructor
InputFile({})
Implementation
InputFile(
{this.path = '',
this.absolutePath = '',
this.relativePath = '',
this.name = '',
this.parts = const []}) {
parts = path.split('/');
parts.removeLast();
name = path.split('/')[parts.length].replaceAll(dartSuffix, '');
}