getByType static method

String getByType(
  1. BroadcastEventType type
)

Implementation

static String getByType(BroadcastEventType type) {
  return BroadcastEventType.values.firstWhere((x) => x == type).value;
}