toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fetchSettings = this.fetchSettings;
  final fileInputType = this.fileInputType;
  final fileName = this.fileName;
  return {
    'fetchSettings': ?fetchSettings,
    'fileInputType': ?fileInputType,
    'fileName': ?fileName,
  };
}