profileIds property

List<String> profileIds

Implementation

List<String> get profileIds => content!.containsKey('profileIds')
    ? (content!['profileIds'] as List<dynamic>)
        .map<String>((a) => a as String)
        .toList()
    : <String>[];