LargeDark.fromJson constructor

LargeDark.fromJson(
  1. dynamic json
)

Implementation

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