LiteFile constructor

LiteFile({
  1. XFile? xFile,
  2. PlatformFile? platformFile,
  3. String? userSetName,
})

Implementation

LiteFile({
  this.xFile,
  this.platformFile,
  this.userSetName,
}) {
  _updateFileInfo().then((value) {
    liteFormRebuildController.rebuild();
  });
}