BMFText.fromMap constructor
- Map map
map => BMFText
Implementation
BMFText.fromMap(Map map)
: assert(map['text'] != null),
assert(map['position'] != null),
super.fromMap(map) {
text = map['text'];
position =
map['position'] == null ? null : BMFCoordinate.fromMap(map['position']);
bgColor = ColorUtil.hexToColor(map['bgColor']);
fontColor = ColorUtil.hexToColor(map['fontColor']);
fontSize = map['fontSize'];
typeFace =
map['typeFace'] == null ? null : BMFTypeFace.fromMap(map['typeFace']);
alignX = map['alignX'];
alignY = map['alignY'];
rotate = map['rotate'];
}