update method

void update(
  1. CircleOptions options
)

Updates the options of the wrapped gmaps.Circle object.

This cannot be called after remove.

Implementation

void update(gmaps.CircleOptions options) {
  assert(_circle != null, 'Cannot `update` Circle after calling `remove`.');
  _circle!.options = options;
}