16 lines
305 B
Dart
16 lines
305 B
Dart
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
class TypographySpan extends TextSpan {
|
|
///
|
|
/// Упрощенный вариант [TextSpan]
|
|
///
|
|
const TypographySpan(
|
|
this.text, {
|
|
super.style,
|
|
});
|
|
|
|
// ignore: annotate_overrides, overridden_fields
|
|
final String text;
|
|
}
|