shape.dart 255 B

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