showErrorMessage method

Future<T?> showErrorMessage(
  1. String content
)

Implementation

Future<T?> showErrorMessage(String content) {
  return showDialog(
    context: context,
    builder: (ctx) => ErrorPopup(
      content,
      title: 'Thông báo',
    ),
  );
}