resolveSize method

Size resolveSize({
  1. MarkerLayerOptions? options,
  2. bool active = false,
  3. bool touch = false,
})

Implementation

Size resolveSize(
    {MarkerLayerOptions? options, bool active = false, bool touch = false}) {
  final s = resolveScale(options: options, active: active, touch: touch);
  return Size(width * s, height * s);
}