show static method
Dialog'u gösterir ve sonucu döndürür
Implementation
static Future<Map<String, dynamic>?> show(
BuildContext context,
List<Color> defaultColors,
) async {
return await showDialog<Map<String, dynamic>>(
context: context,
barrierDismissible: true,
builder: (ctx) => AddMarkerDialog(defaultColors: defaultColors),
);
}