copyWith method

Circle copyWith({
  1. required CircleOptions options,
})

Create copy of Circle with the specified options.

Implementation

Circle copyWith({required CircleOptions options}) {
  return Circle(circleId: circleId, options: options);
}