fontFamily property

String? get fontFamily

当前选择的全局字体,null 表示系统字体

Implementation

static String? get fontFamily => _currentFontModel.value.fontFamily == ''
    ? null
    : _currentFontModel.value.fontFamily;