PlatformFontUsage constructor

PlatformFontUsage({
  1. required String familyName,
  2. required String postScriptName,
  3. required bool isCustomFont,
  4. required num glyphCount,
})

Implementation

PlatformFontUsage({
  required this.familyName,
  required this.postScriptName,
  required this.isCustomFont,
  required this.glyphCount,
});