shape.dart 210 B

1234567
  1. import 'package:fis_lib_report/report/interfaces/lineElemnt.dart';
  2. import 'package:fis_lib_report/report/rt_color.dart';
  3. abstract class IShape extends IInLineElemnt {
  4. RTColor? stroke;
  5. double? thickness;
  6. }