line.dart 205 B

1234567
  1. import 'package:fis_lib_report/report/interfaces/shape.dart';
  2. import 'package:fis_lib_report/report/rt_border.dart';
  3. abstract class ILine extends IShape {
  4. double? width;
  5. RTBorderStyle? borderStyle;
  6. }