extra property

  1. @override
Iterable<String> extra
override

Names of the attributes which are not known.

Returns a list of attribute names, which are not in the knownAttributes for the profile represented by the class.

Implementation

@override
Iterable<String> get extra =>
    attributes.keys.where((k) => !known.contains(k));