setScreenColors method

Future<void> setScreenColors(
  1. String value
)

Implementation

Future<void> setScreenColors(final String value) async {
  return _api.setScreenColors(
    TrackerStringValue()
      ..trackerId = _trackedId
      ..value = value,
  );
}