serialize static method

String? serialize(
  1. DevicePlatform? value
)

Serializes a DevicePlatform to JSON (lowercase string).

Implementation

static String? serialize(DevicePlatform? value) {
  return safeEnumToJson<DevicePlatform>(value);
}