toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final file = this.file;
  final freq = this.freq;
  final mntops = this.mntops;
  final passno = this.passno;
  final spec = this.spec;
  final vfstype = this.vfstype;
  return {
    'file': ?file,
    'freq': ?freq,
    'mntops': ?mntops,
    'passno': ?passno,
    'spec': ?spec,
    'vfstype': ?vfstype,
  };
}