toMap method

Map<String, dynamic> toMap({
  1. EnumMethod? enumMethod,
})

Converts instance to a map.

Implementation

Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
  return {
    "lengthComputable": lengthComputable,
    "loaded": loaded,
    "total": total,
    "type": switch (enumMethod ?? EnumMethod.nativeValue) {
      EnumMethod.nativeValue => type?.toNativeValue(),
      EnumMethod.value => type?.toValue(),
      EnumMethod.name => type?.name(),
    },
  };
}