mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-24 20:40:11 +08:00
16 lines
308 B
Dart
16 lines
308 B
Dart
import 'package:flutter/widgets.dart' show WidgetSpan;
|
|
|
|
class EmoteSpan extends WidgetSpan {
|
|
const EmoteSpan({
|
|
required super.child,
|
|
super.alignment,
|
|
super.baseline,
|
|
super.style,
|
|
this.rawText,
|
|
});
|
|
|
|
@override
|
|
// ignore: override_on_non_overriding_member
|
|
final String? rawText;
|
|
}
|