strings property

Localised strings for the overlay UI.

Implementation

RuntimeInsightOverlayStrings? get strings => _strings;
set strings (RuntimeInsightOverlayStrings? value)

Implementation

set strings(RuntimeInsightOverlayStrings? value) {
  if (_strings == value) return;
  _strings = value;
  notifyListeners();
}