text_element_info.dart 442 B

123456789
  1. import 'package:fis_lib_report/report/inlineElement.dart';
  2. import 'package:fis_lib_report/report/interfaces/element.dart';
  3. import 'package:fis_lib_report/report/interfaces/textElement.dart';
  4. import 'package:fis_lib_report/report/rt_color.dart';
  5. import 'package:fis_lib_report/report_info/element_info.dart';
  6. abstract class TextElementInfo extends ElementInfo {
  7. TextElementInfo.fromElement(IElement element) : super.fromElement(element);
  8. }