toMap method
- EnumMethod? enumMethod,
Converts instance to a map.
Implementation
Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
return {
"allowReplace": allowReplace,
"cancel": cancel,
"kind": switch (enumMethod ?? EnumMethod.nativeValue) {
EnumMethod.nativeValue => kind?.toNativeValue(),
EnumMethod.value => kind?.toValue(),
EnumMethod.name => kind?.name(),
},
"saveAsFilePath": saveAsFilePath,
"suppressDefaultDialog": suppressDefaultDialog,
};
}