inlineElement.dart 273 B

123456
  1. import 'package:fis_lib_report/report/element.dart';
  2. import 'package:fis_lib_report/report/interfaces/lineElemnt.dart';
  3. abstract class InlineElement extends Element implements IInLineElemnt {
  4. InlineElement.fromJson(Map<String, dynamic> json) : super.fromJson(json) {}
  5. }