wrapAttachmentWidget function

  1. @Deprecated(''' wrapAttachmentWidget is deprecated. Use WrapAttachmentWidget instead ''')
Widget wrapAttachmentWidget(
  1. BuildContext context,
  2. Widget attachmentWidget,
  3. ShapeBorder attachmentShape,
  4. bool reverse,
)

Wraps attachment widget with custom shape

Implementation

@Deprecated(
  '''
wrapAttachmentWidget is deprecated.
Use WrapAttachmentWidget instead
''',
)
Widget wrapAttachmentWidget(
  BuildContext context,
  Widget attachmentWidget,
  ShapeBorder attachmentShape,
  // ignore: avoid_positional_boolean_parameters
  bool reverse,
) =>
    WrapAttachmentWidget(
      attachmentWidget: attachmentWidget,
      attachmentShape: attachmentShape,
    );