name property

String name

Get the name of this display.

SDL Docs

Implementation

String get name {
  final ptr = sdl.sdl.SDL_GetDisplayName(index);
  return ptr.cast<Utf8>().toDartString();
}