textFont property
UIFont?
get
textFont
Implementation
UIFont? get textFont =>
_map["textFont"] == null ? null : UIFont?.fromJson(_map["textFont"]);
set
textFont
(UIFont? value)
Implementation
set textFont(UIFont? value) => _map["textFont"] = value?.toJson();