customVars property

Map<String, String>? customVars

Your custom variables.

Implementation

Map<String, String>? get customVars => _customVars;
void customVars=(Map<String, String>? value)

Implementation

set customVars(Map<String, String>? value) {
  if (value == null) {
    _customVars = null;
    return;
  }
  _customVars = value.map((key, value) {
    key = key.toLowerCase().trim();
    key = key.startsWith('v:') ? key : 'v:$key';
    return MapEntry(key, value);
  });
}