defaultFontWeight static method
Create default values
Implementation
static FlyFontWeightToken defaultFontWeight() {
return const FlyFontWeightToken(
thin: FontWeight.w100,
extralight: FontWeight.w200,
light: FontWeight.w300,
normal: FontWeight.w400,
medium: FontWeight.w500,
semibold: FontWeight.w600,
bold: FontWeight.w700,
extrabold: FontWeight.w800,
black: FontWeight.w900,
);
}