toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final folderId = this.folderId;
  final maxFileSize = this.maxFileSize;
  final maxFiles = this.maxFiles;
  final types = this.types;
  return {
    'folderId': ?folderId,
    'maxFileSize': ?maxFileSize,
    'maxFiles': ?maxFiles,
    'types': ?types,
  };
}