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