titleFont property

UIFont? get titleFont

Implementation

UIFont? get titleFont =>
    _map["titleFont"] == null ? null : UIFont?.fromJson(_map["titleFont"]);
set titleFont (UIFont? value)

Implementation

set titleFont(UIFont? value) => _map["titleFont"] = value?.toJson();