copyWith method
Create copy of Circle with the specified options.
Implementation
Circle copyWith({required CircleOptions options}) {
return Circle(circleId: circleId, options: options);
}
Create copy of Circle with the specified options.
Circle copyWith({required CircleOptions options}) {
return Circle(circleId: circleId, options: options);
}