toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final fileMode = this.fileMode;
  final filePath = this.filePath;
  return {
    'fileMode': fileMode.toValue(),
    'filePath': filePath,
  };
}