showInfoDialog function

  1. @Deprecated(''' showInfoDialog is deprecated. Use showInfoBottomSheet instead.''')
Future<bool?> showInfoDialog(
  1. BuildContext context, {
  2. required String title,
  3. required String okText,
  4. Widget? icon,
  5. String? details,
  6. StreamChatThemeData? theme,
})

Shows info dialog

Implementation

@Deprecated(
  '''
  showInfoDialog is deprecated.
  Use showInfoBottomSheet instead.''',
)
Future<bool?> showInfoDialog(
  BuildContext context, {
  required String title,
  required String okText,
  Widget? icon,
  String? details,
  StreamChatThemeData? theme,
}) =>
    showInfoBottomSheet(
      context,
      title: title,
      okText: okText,
      icon: icon,
      details: details,
      theme: theme,
    );