Skip to content

Instantly share code, notes, and snippets.

@berkayoruc
Created December 4, 2021 16:59
Show Gist options
  • Save berkayoruc/681f889a115b1a5ad6d0735acd194e3e to your computer and use it in GitHub Desktop.
Save berkayoruc/681f889a115b1a5ad6d0735acd194e3e to your computer and use it in GitHub Desktop.
class BuffetMarker extends Marker {
final String name;
final String district;
final String neighborhood;
BuffetMarker(
{required LatLng point,
required WidgetBuilder builder,
double width = 30,
double height = 30,
required AnchorPos anchorPos,
required this.name,
required this.district,
required this.neighborhood})
: super(
point: point,
builder: builder,
width: width,
height: height,
anchorPos: anchorPos);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment