includesIdeographicGlyphs property

ObjCProtocolMethod<bool Function()> includesIdeographicGlyphs
final

Specifies whether to include ideographic glyphs in downloaded font data. Ideographic glyphs make up the majority of downloaded font data, but it is possible to configure the renderer to use locally installed fonts instead of relying on fonts downloaded as part of the offline pack. See MLNIdeographicFontFamilyName setting. Also, for regions outside of China, Japan, and Korea, these glyphs will rarely appear for non-CJK users.

By default, this property is set to NO, so that the offline pack will include ideographic glyphs.

Implementation

static final includesIdeographicGlyphs = objc.ObjCProtocolMethod<bool Function()>(
      _protocol_MLNOfflineRegion,
      _sel_includesIdeographicGlyphs,
      ffi.Native.addressOf<ffi.NativeFunction<ffi.Bool Function(ffi.Pointer<objc.ObjCObject> , ffi.Pointer<ffi.Void> )>>(_MapLibreFFi_protocolTrampoline_e3qsqz).cast(),
      objc.getProtocolMethodSignature(
          _protocol_MLNOfflineRegion,
          _sel_includesIdeographicGlyphs,
          isRequired: true,
          isInstanceMethod: true,
      ),
      (bool Function() func) => ObjCBlock_bool_ffiVoid.fromFunction((ffi.Pointer<ffi.Void> _, ) => func()),

    );