FontConfig constructor

const FontConfig({
  1. String sans = "'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
  2. String? heading,
  3. String mono = "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace",
})

Implementation

const FontConfig({
  this.sans = "'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif",
  this.heading,
  this.mono = "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace",
});