fieldsCount property

int get fieldsCount

Gets the number of fields in the contact info.

Returns

  • The field count.

Implementation

int get fieldsCount {
  final OperationResult result = objectMethod(
    _pointerId,
    'ContactInfo',
    'getFieldsCount',
  );
  return result['result'];
}