L3.fromJson constructor

L3.fromJson(
  1. dynamic json
)

Implementation

L3.fromJson(dynamic json) {
  _fontFamily = json['fontFamily'];
  _color = json['color'];
  _fontSize = json['fontSize'];
  _fontWeight = json['fontWeight'];
  _opacity = json['opacity'];
}