fromJson static method
Implementation
static TextLayerData fromJson(Map json) {
var layer = TextLayerData(
text: json['text'],
size: json['size'],
color: Color(json['color']),
background: Color(json['background']),
backgroundOpacity: json['backgroundOpacity'],
align: TextAlign.values.firstWhere((e) => e.name == json['align']),
);
layer.copyFrom(json);
return layer;
}