123456789101112131415 |
- import 'package:fis_lib_report/report/rt_border.dart';
- class Borders {
- RTBorder left = new RTBorder();
- RTBorder top = new RTBorder();
- RTBorder right = new RTBorder();
- RTBorder bottom = new RTBorder();
- Borders.fromJson(Map<String, dynamic> json) {
- left = RTBorder.fromJson(json['Left']);
- top = RTBorder.fromJson(json['Top']);
- right = RTBorder.fromJson(json['Right']);
- bottom = RTBorder.fromJson(json['Bottom']);
- }
- }
|