toMap method

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

Converts instance to a map.

Implementation

Map<String, dynamic> toMap({EnumMethod? enumMethod}) {
  return {
    "certificates": certificates
        ?.map((e) => e.toMap(enumMethod: enumMethod))
        .toList(),
    "password": password,
    "persistence": switch (enumMethod ?? EnumMethod.nativeValue) {
      EnumMethod.nativeValue => persistence?.toNativeValue(),
      EnumMethod.value => persistence?.toValue(),
      EnumMethod.name => persistence?.name(),
    },
    "username": username,
  };
}