fullName property

String get fullName

The fully-qualified extension name without the surrounding brackets, e.g. acme.user_email for a fieldKey of [acme.user_email].

Implementation

String get fullName => fieldKey.startsWith('[') && fieldKey.endsWith(']')
    ? fieldKey.substring(1, fieldKey.length - 1)
    : fieldKey;