Header.fromJson constructor

Header.fromJson(
  1. dynamic json
)

Implementation

Header.fromJson(dynamic json) {
  _h1 = json['h1'] != null ? H1.fromJson(json['h1']) : null;
  _h2 = json['h2'] != null ? H2.fromJson(json['h2']) : null;
  _h3 = json['h3'] != null ? H3.fromJson(json['h3']) : null;
}