remove method

  1. @override
void remove(
  1. int index
)
override

Removes a function by its index.

  • index a index of the function to be removed.

Implementation

@override
void remove(int index) {
  _functions.removeAt(index);
}