OpenOptions constructor

OpenOptions({
  1. bool? read,
  2. bool? write,
  3. bool? append,
  4. bool? truncate,
  5. bool? create,
  6. bool? createNew,
  7. num? mode,
})

Implementation

factory OpenOptions({
  _i2.bool? read,
  _i2.bool? write,
  _i2.bool? append,
  _i2.bool? truncate,
  _i2.bool? create,
  _i2.bool? createNew,
  _i2.num? mode,
}) =>
    OpenOptions._(
      read: read,
      write: write,
      append: append,
      truncate: truncate,
      create: create,
      createNew: createNew,
      mode: mode,
    );