xmlScopes property

String get xmlScopes

Implementation

@JsonKey(name: 'Scopes')
final String xmlScopes;
set xmlScopes (String scopes)

Implementation

set xmlScopes(String scopes) {
  _scopeMap = Map.fromIterable(scopes.split(','),
      key: (item) => item
          .toString()
          .replaceAll('onvif://www.onvif.org/', '')
          .replaceAll(RegExp('/([^/]+)/?\$'), ''),
      value: (item) => item.toString().replaceAll(RegExp('.*/'), ''));
}