Attributes.fromJson constructor

Attributes.fromJson(
  1. dynamic json
)

Implementation

factory Attributes.fromJson(dynamic json) {
  return Attributes(
    heading: json['heading'],
    block: json['block'],
    b: json['b'],
    i: json['i'],
    u: json['u'],
  );
}