show method
Implementation
Future<int?> show(
{DialogType? type,
Image? image,
String? title,
String? description,
Widget? content,
List<Widget>? buttons}) async {
if (context == null) return null;
return DialogManager.show(context!,
type: type,
image: image,
title: title,
description: description,
content: content,
buttons: buttons);
}