VFile constructor

VFile(
  1. String name,
  2. {List<int>? data}
)

Implementation

VFile(
  super.name, {
  List<int>? data,
})  : changed = DateTime.now(),
      data = data ?? [];