GetMonitorName method

String GetMonitorName(
  1. num monitor
)

Get the human-readable, UTF-8 encoded name of the specified monitor

! Not implemented on WASM

Implementation

String GetMonitorName(
  num monitor,
) => run(
  () => _debugLabels.GetMonitorName(monitor),
  () => _flat.GetMonitorName(
    monitor.toInt(),
  ).toDartString(),
);