borders.dart 445 B

123456789101112131415
  1. import 'package:fis_lib_report/report/rt_border.dart';
  2. class Borders {
  3. RTBorder left = new RTBorder();
  4. RTBorder top = new RTBorder();
  5. RTBorder right = new RTBorder();
  6. RTBorder bottom = new RTBorder();
  7. Borders.fromJson(Map<String, dynamic> json) {
  8. left = RTBorder.fromJson(json['Left']);
  9. top = RTBorder.fromJson(json['Top']);
  10. right = RTBorder.fromJson(json['Right']);
  11. bottom = RTBorder.fromJson(json['Bottom']);
  12. }
  13. }