removeField method

void removeField(
  1. int index
)

Removes the field at index.

If no field exists at index the method is a no-op.

Parameters

  • index: Zero-based index of the field to remove.

Also see:

Implementation

void removeField(final int index) {
  objectMethod(pointerId, 'ContactInfo', 'removeField', args: index);
}