diff --git a/packages/google_fonts/CHANGELOG.md b/packages/google_fonts/CHANGELOG.md index b729e505b565..4367327638ef 100644 --- a/packages/google_fonts/CHANGELOG.md +++ b/packages/google_fonts/CHANGELOG.md @@ -1,3 +1,6 @@ +## 7.0.1 +- Exclude variable font entries when a static entry of the same weight and style exists + ## 7.0.0 - Added fonts: diff --git a/packages/google_fonts/generator/fonts.pb.dart b/packages/google_fonts/generator/fonts.pb.dart index ccad08e0ce14..2508ac6d4351 100644 --- a/packages/google_fonts/generator/fonts.pb.dart +++ b/packages/google_fonts/generator/fonts.pb.dart @@ -1,82 +1,71 @@ -/// -// Generated code. Do not modify. -// source: generator/fonts.proto +// This is a generated file - do not edit. // -// @dart = 2.12 -// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields +// Generated from generator/fonts.proto. + +// @dart = 3.3 + +// ignore_for_file: annotate_overrides, camel_case_types, comment_references +// ignore_for_file: constant_identifier_names +// ignore_for_file: curly_braces_in_flow_control_structures +// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes +// ignore_for_file: non_constant_identifier_names, prefer_relative_imports import 'dart:core' as $core; import 'package:fixnum/fixnum.dart' as $fixnum; import 'package:protobuf/protobuf.dart' as $pb; -class FileSpec extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'FileSpec', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..aOS( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'filename') - ..aInt64( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'fileSize') - ..a<$core.List<$core.int>>( - 3, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'hash', - $pb.PbFieldType.OY) - ..hasRequiredFields = false; +export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions; - FileSpec._() : super(); +/// Details required for a checked download +/// A Downloadable Font will typically have a hash but no filename. +/// A System Font will typically have only a filename. +/// Hash is 20 bytes sha1 up to v12, 32 byte sha256 for v13+, +class FileSpec extends $pb.GeneratedMessage { factory FileSpec({ $core.String? filename, $fixnum.Int64? fileSize, $core.List<$core.int>? hash, }) { - final _result = create(); - if (filename != null) { - _result.filename = filename; - } - if (fileSize != null) { - _result.fileSize = fileSize; - } - if (hash != null) { - _result.hash = hash; - } - return _result; + final result = create(); + if (filename != null) result.filename = filename; + if (fileSize != null) result.fileSize = fileSize; + if (hash != null) result.hash = hash; + return result; } - factory FileSpec.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory FileSpec.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - FileSpec clone() => FileSpec()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + FileSpec._(); + + factory FileSpec.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory FileSpec.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'FileSpec', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'filename') + ..aInt64(2, _omitFieldNames ? '' : 'fileSize') + ..a<$core.List<$core.int>>( + 3, _omitFieldNames ? '' : 'hash', $pb.PbFieldType.OY) + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + FileSpec clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FileSpec copyWith(void Function(FileSpec) updates) => - super.copyWith((message) => updates(message as FileSpec)) - as FileSpec; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as FileSpec)) as FileSpec; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static FileSpec create() => FileSpec._(); + @$core.override FileSpec createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FileSpec getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); @@ -85,99 +74,73 @@ class FileSpec extends $pb.GeneratedMessage { @$pb.TagNumber(1) $core.String get filename => $_getSZ(0); @$pb.TagNumber(1) - set filename($core.String v) { - $_setString(0, v); - } - + set filename($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasFilename() => $_has(0); @$pb.TagNumber(1) - void clearFilename() => clearField(1); + void clearFilename() => $_clearField(1); @$pb.TagNumber(2) $fixnum.Int64 get fileSize => $_getI64(1); @$pb.TagNumber(2) - set fileSize($fixnum.Int64 v) { - $_setInt64(1, v); - } - + set fileSize($fixnum.Int64 value) => $_setInt64(1, value); @$pb.TagNumber(2) $core.bool hasFileSize() => $_has(1); @$pb.TagNumber(2) - void clearFileSize() => clearField(2); + void clearFileSize() => $_clearField(2); @$pb.TagNumber(3) $core.List<$core.int> get hash => $_getN(2); @$pb.TagNumber(3) - set hash($core.List<$core.int> v) { - $_setBytes(2, v); - } - + set hash($core.List<$core.int> value) => $_setBytes(2, value); @$pb.TagNumber(3) $core.bool hasHash() => $_has(2); @$pb.TagNumber(3) - void clearHash() => clearField(3); + void clearHash() => $_clearField(3); } +/// To allow expression of variation font capability, e.g. weight 300-700 class IntRange extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'IntRange', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..a<$core.int>( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'start', - $pb.PbFieldType.O3) - ..a<$core.int>( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'end', - $pb.PbFieldType.O3) - ..hasRequiredFields = false; - - IntRange._() : super(); factory IntRange({ $core.int? start, $core.int? end, }) { - final _result = create(); - if (start != null) { - _result.start = start; - } - if (end != null) { - _result.end = end; - } - return _result; + final result = create(); + if (start != null) result.start = start; + if (end != null) result.end = end; + return result; } - factory IntRange.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory IntRange.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - IntRange clone() => IntRange()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + IntRange._(); + + factory IntRange.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory IntRange.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'IntRange', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..aI(1, _omitFieldNames ? '' : 'start') + ..aI(2, _omitFieldNames ? '' : 'end') + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + IntRange clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') IntRange copyWith(void Function(IntRange) updates) => - super.copyWith((message) => updates(message as IntRange)) - as IntRange; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as IntRange)) as IntRange; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static IntRange create() => IntRange._(); + @$core.override IntRange createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static IntRange getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); @@ -186,87 +149,66 @@ class IntRange extends $pb.GeneratedMessage { @$pb.TagNumber(1) $core.int get start => $_getIZ(0); @$pb.TagNumber(1) - set start($core.int v) { - $_setSignedInt32(0, v); - } - + set start($core.int value) => $_setSignedInt32(0, value); @$pb.TagNumber(1) $core.bool hasStart() => $_has(0); @$pb.TagNumber(1) - void clearStart() => clearField(1); + void clearStart() => $_clearField(1); @$pb.TagNumber(2) $core.int get end => $_getIZ(1); @$pb.TagNumber(2) - set end($core.int v) { - $_setSignedInt32(1, v); - } - + set end($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasEnd() => $_has(1); @$pb.TagNumber(2) - void clearEnd() => clearField(2); + void clearEnd() => $_clearField(2); } +/// To allow expression of variation font capability, e.g. weight 300-700 +/// If end is <= start it's a point (e.g. for a non-variational font). +/// Where possible prefer end = 0 for point to save the field in binary proto. class FloatRange extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'FloatRange', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..a<$core.double>( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'start', - $pb.PbFieldType.OF) - ..a<$core.double>( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'end', - $pb.PbFieldType.OF) - ..hasRequiredFields = false; - - FloatRange._() : super(); factory FloatRange({ $core.double? start, $core.double? end, }) { - final _result = create(); - if (start != null) { - _result.start = start; - } - if (end != null) { - _result.end = end; - } - return _result; + final result = create(); + if (start != null) result.start = start; + if (end != null) result.end = end; + return result; } - factory FloatRange.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory FloatRange.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - FloatRange clone() => FloatRange()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + FloatRange._(); + + factory FloatRange.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory FloatRange.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'FloatRange', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..aD(1, _omitFieldNames ? '' : 'start', fieldType: $pb.PbFieldType.OF) + ..aD(2, _omitFieldNames ? '' : 'end', fieldType: $pb.PbFieldType.OF) + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + FloatRange clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FloatRange copyWith(void Function(FloatRange) updates) => - super.copyWith((message) => updates(message as FloatRange)) - as FloatRange; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as FloatRange)) as FloatRange; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static FloatRange create() => FloatRange._(); + @$core.override FloatRange createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FloatRange getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); @@ -275,117 +217,84 @@ class FloatRange extends $pb.GeneratedMessage { @$pb.TagNumber(1) $core.double get start => $_getN(0); @$pb.TagNumber(1) - set start($core.double v) { - $_setFloat(0, v); - } - + set start($core.double value) => $_setFloat(0, value); @$pb.TagNumber(1) $core.bool hasStart() => $_has(0); @$pb.TagNumber(1) - void clearStart() => clearField(1); + void clearStart() => $_clearField(1); @$pb.TagNumber(2) $core.double get end => $_getN(1); @$pb.TagNumber(2) - set end($core.double v) { - $_setFloat(1, v); - } - + set end($core.double value) => $_setFloat(1, value); @$pb.TagNumber(2) $core.bool hasEnd() => $_has(1); @$pb.TagNumber(2) - void clearEnd() => clearField(2); + void clearEnd() => $_clearField(2); } +/// Describes a single optentype font file, which may be a variation font or a +/// single font from a TTC. class Font extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'Font', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..aOM( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'file', - subBuilder: FileSpec.create) - ..aOM( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'weight', - subBuilder: IntRange.create) - ..aOM( - 3, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'width', - subBuilder: FloatRange.create) - ..aOM( - 4, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'italic', - subBuilder: FloatRange.create) - ..a<$core.int>( - 7, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'ttcIndex', - $pb.PbFieldType.O3) - ..hasRequiredFields = false; - - Font._() : super(); factory Font({ FileSpec? file, IntRange? weight, FloatRange? width, FloatRange? italic, $core.int? ttcIndex, + $core.String? postScriptName, + $core.bool? isVf, }) { - final _result = create(); - if (file != null) { - _result.file = file; - } - if (weight != null) { - _result.weight = weight; - } - if (width != null) { - _result.width = width; - } - if (italic != null) { - _result.italic = italic; - } - if (ttcIndex != null) { - _result.ttcIndex = ttcIndex; - } - return _result; + final result = create(); + if (file != null) result.file = file; + if (weight != null) result.weight = weight; + if (width != null) result.width = width; + if (italic != null) result.italic = italic; + if (ttcIndex != null) result.ttcIndex = ttcIndex; + if (postScriptName != null) result.postScriptName = postScriptName; + if (isVf != null) result.isVf = isVf; + return result; } - factory Font.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory Font.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - Font clone() => Font()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + Font._(); + + factory Font.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory Font.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'Font', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..aOM(1, _omitFieldNames ? '' : 'file', + subBuilder: FileSpec.create) + ..aOM(2, _omitFieldNames ? '' : 'weight', + subBuilder: IntRange.create) + ..aOM(3, _omitFieldNames ? '' : 'width', + subBuilder: FloatRange.create) + ..aOM(4, _omitFieldNames ? '' : 'italic', + subBuilder: FloatRange.create) + ..aI(7, _omitFieldNames ? '' : 'ttcIndex') + ..aOS(8, _omitFieldNames ? '' : 'postScriptName') + ..aOB(9, _omitFieldNames ? '' : 'isVf') + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + Font clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') Font copyWith(void Function(Font) updates) => - super.copyWith((message) => updates(message as Font)) - as Font; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as Font)) as Font; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static Font create() => Font._(); + @$core.override Font createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static Font getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); @@ -394,141 +303,132 @@ class Font extends $pb.GeneratedMessage { @$pb.TagNumber(1) FileSpec get file => $_getN(0); @$pb.TagNumber(1) - set file(FileSpec v) { - setField(1, v); - } - + set file(FileSpec value) => $_setField(1, value); @$pb.TagNumber(1) $core.bool hasFile() => $_has(0); @$pb.TagNumber(1) - void clearFile() => clearField(1); + void clearFile() => $_clearField(1); @$pb.TagNumber(1) FileSpec ensureFile() => $_ensure(0); + /// numeric weight per https://drafts.csswg.org/css-fonts/#propdef-font-weight + /// if varfont, range of 'wght' per + /// https://www.microsoft.com/typography/otspec/fvar.htm#VAT @$pb.TagNumber(2) IntRange get weight => $_getN(1); @$pb.TagNumber(2) - set weight(IntRange v) { - setField(2, v); - } - + set weight(IntRange value) => $_setField(2, value); @$pb.TagNumber(2) $core.bool hasWeight() => $_has(1); @$pb.TagNumber(2) - void clearWeight() => clearField(2); + void clearWeight() => $_clearField(2); @$pb.TagNumber(2) IntRange ensureWeight() => $_ensure(1); + /// names converted to values per + /// https://www.microsoft.com/typography/otspec/os2.htm#wdc + /// if varfont, range of 'wdth' per + /// https://www.microsoft.com/typography/otspec/fvar.htm#VAT @$pb.TagNumber(3) FloatRange get width => $_getN(2); @$pb.TagNumber(3) - set width(FloatRange v) { - setField(3, v); - } - + set width(FloatRange value) => $_setField(3, value); @$pb.TagNumber(3) $core.bool hasWidth() => $_has(2); @$pb.TagNumber(3) - void clearWidth() => clearField(3); + void clearWidth() => $_clearField(3); @$pb.TagNumber(3) FloatRange ensureWidth() => $_ensure(2); + /// 0.0 or 1.0 per https://www.microsoft.com/typography/otspec/os2.htm#fss + /// bit 0. if varfont, range of 'ital' per + /// https://www.microsoft.com/typography/otspec/fvar.htm#VAT @$pb.TagNumber(4) FloatRange get italic => $_getN(3); @$pb.TagNumber(4) - set italic(FloatRange v) { - setField(4, v); - } - + set italic(FloatRange value) => $_setField(4, value); @$pb.TagNumber(4) $core.bool hasItalic() => $_has(3); @$pb.TagNumber(4) - void clearItalic() => clearField(4); + void clearItalic() => $_clearField(4); @$pb.TagNumber(4) FloatRange ensureItalic() => $_ensure(3); + /// Google Fonts doesn't have any [yet?] but Android does @$pb.TagNumber(7) $core.int get ttcIndex => $_getIZ(4); @$pb.TagNumber(7) - set ttcIndex($core.int v) { - $_setSignedInt32(4, v); - } - + set ttcIndex($core.int value) => $_setSignedInt32(4, value); @$pb.TagNumber(7) $core.bool hasTtcIndex() => $_has(4); @$pb.TagNumber(7) - void clearTtcIndex() => clearField(7); + void clearTtcIndex() => $_clearField(7); + + /// Used for matching against system fonts. + @$pb.TagNumber(8) + $core.String get postScriptName => $_getSZ(5); + @$pb.TagNumber(8) + set postScriptName($core.String value) => $_setString(5, value); + @$pb.TagNumber(8) + $core.bool hasPostScriptName() => $_has(5); + @$pb.TagNumber(8) + void clearPostScriptName() => $_clearField(8); + + /// True if the font is a variable font. + @$pb.TagNumber(9) + $core.bool get isVf => $_getBF(6); + @$pb.TagNumber(9) + set isVf($core.bool value) => $_setBool(6, value); + @$pb.TagNumber(9) + $core.bool hasIsVf() => $_has(6); + @$pb.TagNumber(9) + void clearIsVf() => $_clearField(9); } class FontFamily extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'FontFamily', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..aOS( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'name') - ..a<$core.int>( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'version', - $pb.PbFieldType.O3) - ..pc( - 4, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'fonts', - $pb.PbFieldType.PM, - subBuilder: Font.create) - ..hasRequiredFields = false; - - FontFamily._() : super(); factory FontFamily({ $core.String? name, $core.int? version, $core.Iterable? fonts, }) { - final _result = create(); - if (name != null) { - _result.name = name; - } - if (version != null) { - _result.version = version; - } - if (fonts != null) { - _result.fonts.addAll(fonts); - } - return _result; + final result = create(); + if (name != null) result.name = name; + if (version != null) result.version = version; + if (fonts != null) result.fonts.addAll(fonts); + return result; } - factory FontFamily.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory FontFamily.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - FontFamily clone() => FontFamily()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + FontFamily._(); + + factory FontFamily.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory FontFamily.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'FontFamily', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..aOS(1, _omitFieldNames ? '' : 'name') + ..aI(2, _omitFieldNames ? '' : 'version') + ..pPM(4, _omitFieldNames ? '' : 'fonts', subBuilder: Font.create) + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + FontFamily clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') FontFamily copyWith(void Function(FontFamily) updates) => - super.copyWith((message) => updates(message as FontFamily)) - as FontFamily; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as FontFamily)) as FontFamily; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static FontFamily create() => FontFamily._(); + @$core.override FontFamily createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static FontFamily getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); @@ -537,167 +437,104 @@ class FontFamily extends $pb.GeneratedMessage { @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) - set name($core.String v) { - $_setString(0, v); - } - + set name($core.String value) => $_setString(0, value); @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) - void clearName() => clearField(1); + void clearName() => $_clearField(1); @$pb.TagNumber(2) $core.int get version => $_getIZ(1); @$pb.TagNumber(2) - set version($core.int v) { - $_setSignedInt32(1, v); - } - + set version($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(2) $core.bool hasVersion() => $_has(1); @$pb.TagNumber(2) - void clearVersion() => clearField(2); + void clearVersion() => $_clearField(2); + /// Even for a variation font we may have several entries, for example Roboto + /// as a varfont may + /// span two files, one for regular and one for italic @$pb.TagNumber(4) - $core.List get fonts => $_getList(2); + $pb.PbList get fonts => $_getList(2); } +/// A set of potentially available families. class Directory extends $pb.GeneratedMessage { - static final $pb.BuilderInfo _i = $pb.BuilderInfo( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'Directory', - package: const $pb.PackageName( - const $core.bool.fromEnvironment('protobuf.omit_message_names') - ? '' - : 'fonts'), - createEmptyInstance: create) - ..pc( - 1, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'family', - $pb.PbFieldType.PM, - subBuilder: FontFamily.create) - ..p<$core.int>( - 2, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'nameLookup', - $pb.PbFieldType.P3) - ..pPS( - 3, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'strings') - ..p<$core.int>( - 4, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'prefetch', - $pb.PbFieldType.P3) - ..a<$core.int>( - 5, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'version', - $pb.PbFieldType.O3) - ..aOS( - 6, - const $core.bool.fromEnvironment('protobuf.omit_field_names') - ? '' - : 'description') - ..hasRequiredFields = false; - - Directory._() : super(); factory Directory({ $core.Iterable? family, - $core.Iterable<$core.int>? nameLookup, - $core.Iterable<$core.String>? strings, - $core.Iterable<$core.int>? prefetch, $core.int? version, $core.String? description, }) { - final _result = create(); - if (family != null) { - _result.family.addAll(family); - } - if (nameLookup != null) { - _result.nameLookup.addAll(nameLookup); - } - if (strings != null) { - _result.strings.addAll(strings); - } - if (prefetch != null) { - _result.prefetch.addAll(prefetch); - } - if (version != null) { - _result.version = version; - } - if (description != null) { - _result.description = description; - } - return _result; + final result = create(); + if (family != null) result.family.addAll(family); + if (version != null) result.version = version; + if (description != null) result.description = description; + return result; } - factory Directory.fromBuffer($core.List<$core.int> i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromBuffer(i, r); - factory Directory.fromJson($core.String i, - [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => - create()..mergeFromJson(i, r); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' - 'Will be removed in next major version') - Directory clone() => Directory()..mergeFromMessage(this); - @$core.Deprecated('Using this can add significant overhead to your binary. ' - 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' - 'Will be removed in next major version') + + Directory._(); + + factory Directory.fromBuffer($core.List<$core.int> data, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromBuffer(data, registry); + factory Directory.fromJson($core.String json, + [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => + create()..mergeFromJson(json, registry); + + static final $pb.BuilderInfo _i = $pb.BuilderInfo( + _omitMessageNames ? '' : 'Directory', + package: const $pb.PackageName(_omitMessageNames ? '' : 'fonts'), + createEmptyInstance: create) + ..pPM(1, _omitFieldNames ? '' : 'family', + subBuilder: FontFamily.create) + ..aI(5, _omitFieldNames ? '' : 'version') + ..aOS(6, _omitFieldNames ? '' : 'description') + ..hasRequiredFields = false; + + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') + Directory clone() => deepCopy(); + @$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.') Directory copyWith(void Function(Directory) updates) => - super.copyWith((message) => updates(message as Directory)) - as Directory; // ignore: deprecated_member_use + super.copyWith((message) => updates(message as Directory)) as Directory; + + @$core.override $pb.BuilderInfo get info_ => _i; + @$core.pragma('dart2js:noInline') static Directory create() => Directory._(); + @$core.override Directory createEmptyInstance() => create(); - static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static Directory getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static Directory? _defaultInstance; + /// sorted by name @$pb.TagNumber(1) - $core.List get family => $_getList(0); - - @$pb.TagNumber(2) - $core.List<$core.int> get nameLookup => $_getList(1); - - @$pb.TagNumber(3) - $core.List<$core.String> get strings => $_getList(2); - - @$pb.TagNumber(4) - $core.List<$core.int> get prefetch => $_getList(3); + $pb.PbList get family => $_getList(0); @$pb.TagNumber(5) - $core.int get version => $_getIZ(4); + $core.int get version => $_getIZ(1); @$pb.TagNumber(5) - set version($core.int v) { - $_setSignedInt32(4, v); - } - + set version($core.int value) => $_setSignedInt32(1, value); @$pb.TagNumber(5) - $core.bool hasVersion() => $_has(4); + $core.bool hasVersion() => $_has(1); @$pb.TagNumber(5) - void clearVersion() => clearField(5); + void clearVersion() => $_clearField(5); + /// Description of current directory version. @$pb.TagNumber(6) - $core.String get description => $_getSZ(5); + $core.String get description => $_getSZ(2); @$pb.TagNumber(6) - set description($core.String v) { - $_setString(5, v); - } - + set description($core.String value) => $_setString(2, value); @$pb.TagNumber(6) - $core.bool hasDescription() => $_has(5); + $core.bool hasDescription() => $_has(2); @$pb.TagNumber(6) - void clearDescription() => clearField(6); + void clearDescription() => $_clearField(6); } + +const $core.bool _omitFieldNames = + $core.bool.fromEnvironment('protobuf.omit_field_names'); +const $core.bool _omitMessageNames = + $core.bool.fromEnvironment('protobuf.omit_message_names'); diff --git a/packages/google_fonts/generator/fonts.proto b/packages/google_fonts/generator/fonts.proto index 09e121fcfb3f..76358f79db81 100644 --- a/packages/google_fonts/generator/fonts.proto +++ b/packages/google_fonts/generator/fonts.proto @@ -2,8 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// Generate .dart files with -// protoc --dart_out=. generator/fonts.proto +// If updating this file, regenerate corresponding .dart files: +// 1. Ensure protoc is available +// 2. dart pub global activate protoc_plugin +// 3. protoc --dart_out=. generator/fonts.proto syntax = "proto2"; package fonts; @@ -65,6 +67,12 @@ message Font { optional int32 ttc_index = 7; // We don't care about custom axes because we don't use them for matching + + // Used for matching against system fonts. + optional string post_script_name = 8; + + // True if the font is a variable font. + optional bool is_vf = 9; } message FontFamily { @@ -82,17 +90,9 @@ message Directory { // sorted by name repeated FontFamily family = 1; - // sorted name lookup info for binary search - // see go/fonts-gmscore-namelookup for bit packing scheme - repeated int32 name_lookup = 2; - - // strings for full and postscript names, broken up. - // see go/fonts-gmscore-namelookup. - repeated string strings = 3; - - // Name-lookup style family + font indices to prefetch, highest priority - // first. - repeated int32 prefetch = 4; + reserved 2; // was named_lookup + reserved 3; // was strings for full and post script names + reserved 4; // was prefetch optional int32 version = 5; diff --git a/packages/google_fonts/generator/generator.dart b/packages/google_fonts/generator/generator.dart index 1bb3e9babd03..da7cf972e2ec 100644 --- a/packages/google_fonts/generator/generator.dart +++ b/packages/google_fonts/generator/generator.dart @@ -12,10 +12,9 @@ import 'package:mustache_template/mustache.dart'; import 'fonts.pb.dart'; -const String _generatedAllPartsFilePath = - 'lib/src/google_fonts_all_parts.g.dart'; +const String _generatedAllPartsFilePath = 'lib/src/google_fonts_all_parts.dart'; String _generatedPartFilePath(String part) => - 'lib/src/google_fonts_parts/part_$part.g.dart'; + 'lib/src/google_fonts_parts/part_$part.dart'; const String _familiesSupportedPath = 'generator/families_supported'; const String _familiesDiffPath = 'generator/families_diff'; @@ -25,6 +24,8 @@ Future main() async { print('Success! Using $protoUrl'); final Directory fontDirectory = await _readFontsProtoData(protoUrl); + _computeVariantCounts(fontDirectory); + print('\nValidating font URLs and file contents...'); await _verifyUrls(fontDirectory); print(_success); @@ -186,6 +187,43 @@ class _FamiliesDelta { } } +void _computeVariantCounts(Directory fontDirectory) { + final int families = fontDirectory.family.length; + + // Pre-dedup counts + var preStatic = 0; + var preVariable = 0; + for (final FontFamily family in fontDirectory.family) { + for (final Font font in family.fonts) { + if (font.isVf) { + preVariable += 1; + } else { + preStatic += 1; + } + } + } + print( + 'Found $families font families, composed of $preStatic static variants and $preVariable variable variants.', + ); + + // Post-dedup counts + var postStatic = 0; + var postVariable = 0; + for (final FontFamily family in fontDirectory.family) { + final List filtered = _deduplicateFonts(family.fonts); + for (final font in filtered) { + if (font.isVf) { + postVariable += 1; + } else { + postStatic += 1; + } + } + } + print( + 'After deduplication: composed of $postStatic static variants and $postVariable variable variants.', + ); +} + void _generateDartCode(Directory fontDirectory) { final methods = >[]; @@ -213,6 +251,8 @@ void _generateDartCode(Directory fontDirectory) { 'labelSmall', ]; + final List filteredVariants = _deduplicateFonts(item.fonts); + methods.add({ 'methodName': methodName, 'part': methodName[0].toUpperCase(), @@ -220,7 +260,7 @@ void _generateDartCode(Directory fontDirectory) { 'fontFamilyDisplay': family, 'docsUrl': 'https://fonts.google.com/specimen/$familyWithPlusSigns', 'fontUrls': >[ - for (final Font variant in item.fonts) + for (final Font variant in filteredVariants) { 'variantWeight': variant.weight.start, 'variantStyle': variant.italic.start.round() == 1 @@ -290,6 +330,35 @@ void _writeDartFile(String path, String content) { File(path).writeAsStringSync(content); } +/// Remove variable-font entries when a static entry of the same +/// weight/italic exists. Keep variable only if no static equivalent. +/// +// TODO(guidezpl): Add explicit variable-font support, see +// https://github.com/flutter/flutter/issues/174575 and +// https://github.com/flutter/flutter/issues/174567 +List _deduplicateFonts(List fonts) { + final filteredVariants = []; + for (final variant in fonts) { + if (!variant.isVf) { + filteredVariants.add(variant); + continue; + } + var hasStaticEquivalent = false; + for (final other in fonts) { + if (!other.isVf && + other.weight.start == variant.weight.start && + other.italic.start.round() == variant.italic.start.round()) { + hasStaticEquivalent = true; + break; + } + } + if (!hasStaticEquivalent) { + filteredVariants.add(variant); + } + } + return filteredVariants; +} + String _familyToMethodName(String family) { final List words = family.split(' '); for (var i = 0; i < words.length; i++) { diff --git a/packages/google_fonts/generator/google_fonts.tmpl b/packages/google_fonts/generator/google_fonts.tmpl index 31443b863eab..0250100236d8 100755 --- a/packages/google_fonts/generator/google_fonts.tmpl +++ b/packages/google_fonts/generator/google_fonts.tmpl @@ -4,6 +4,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +// ignore_for_file: specify_nonobvious_property_types, specify_nonobvious_local_variable_types + import 'dart:ui' as ui; import 'package:flutter/material.dart'; @@ -207,7 +209,9 @@ class GoogleFonts { } {{#method}} + /// See [Part{{part}}.{{methodName}}]. static const {{methodName}} = Part{{part}}.{{methodName}}; + /// See [Part{{part}}.{{methodName}}TextTheme]. static const {{methodName}}TextTheme = Part{{part}}.{{methodName}}TextTheme; {{/method}} } diff --git a/packages/google_fonts/lib/google_fonts.dart b/packages/google_fonts/lib/google_fonts.dart index 473926b29ab6..02511f440f4f 100644 --- a/packages/google_fonts/lib/google_fonts.dart +++ b/packages/google_fonts/lib/google_fonts.dart @@ -2,10 +2,4 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// TODO(stuartmorgan): Update the generator to not use a .g.dart extension -// for this, and fix all the resulting analyzer issues (in the generator). -// Because everything in this file is public, it should follow conventions like -// documenting public methods that the analyzer would be enforcing if the file -// weren't opted out. The current approach of using .g.dart is just to -// simplify importing this package into the monorepo. -export 'src/google_fonts_all_parts.g.dart'; +export 'src/google_fonts_all_parts.dart'; diff --git a/packages/google_fonts/lib/src/google_fonts_all_parts.g.dart b/packages/google_fonts/lib/src/google_fonts_all_parts.dart similarity index 73% rename from packages/google_fonts/lib/src/google_fonts_all_parts.g.dart rename to packages/google_fonts/lib/src/google_fonts_all_parts.dart index 15fb1e46e85b..d876e5c8fb94 100644 --- a/packages/google_fonts/lib/src/google_fonts_all_parts.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_all_parts.dart @@ -4,37 +4,39 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +// ignore_for_file: specify_nonobvious_property_types, specify_nonobvious_local_variable_types + import 'dart:ui' as ui; import 'package:flutter/material.dart'; import 'google_fonts_base.dart'; -import 'google_fonts_parts/part_a.g.dart'; -import 'google_fonts_parts/part_b.g.dart'; -import 'google_fonts_parts/part_c.g.dart'; -import 'google_fonts_parts/part_d.g.dart'; -import 'google_fonts_parts/part_e.g.dart'; -import 'google_fonts_parts/part_f.g.dart'; -import 'google_fonts_parts/part_g.g.dart'; -import 'google_fonts_parts/part_h.g.dart'; -import 'google_fonts_parts/part_i.g.dart'; -import 'google_fonts_parts/part_j.g.dart'; -import 'google_fonts_parts/part_k.g.dart'; -import 'google_fonts_parts/part_l.g.dart'; -import 'google_fonts_parts/part_m.g.dart'; -import 'google_fonts_parts/part_n.g.dart'; -import 'google_fonts_parts/part_o.g.dart'; -import 'google_fonts_parts/part_p.g.dart'; -import 'google_fonts_parts/part_q.g.dart'; -import 'google_fonts_parts/part_r.g.dart'; -import 'google_fonts_parts/part_s.g.dart'; -import 'google_fonts_parts/part_t.g.dart'; -import 'google_fonts_parts/part_u.g.dart'; -import 'google_fonts_parts/part_v.g.dart'; -import 'google_fonts_parts/part_w.g.dart'; -import 'google_fonts_parts/part_x.g.dart'; -import 'google_fonts_parts/part_y.g.dart'; -import 'google_fonts_parts/part_z.g.dart'; +import 'google_fonts_parts/part_a.dart'; +import 'google_fonts_parts/part_b.dart'; +import 'google_fonts_parts/part_c.dart'; +import 'google_fonts_parts/part_d.dart'; +import 'google_fonts_parts/part_e.dart'; +import 'google_fonts_parts/part_f.dart'; +import 'google_fonts_parts/part_g.dart'; +import 'google_fonts_parts/part_h.dart'; +import 'google_fonts_parts/part_i.dart'; +import 'google_fonts_parts/part_j.dart'; +import 'google_fonts_parts/part_k.dart'; +import 'google_fonts_parts/part_l.dart'; +import 'google_fonts_parts/part_m.dart'; +import 'google_fonts_parts/part_n.dart'; +import 'google_fonts_parts/part_o.dart'; +import 'google_fonts_parts/part_p.dart'; +import 'google_fonts_parts/part_q.dart'; +import 'google_fonts_parts/part_r.dart'; +import 'google_fonts_parts/part_s.dart'; +import 'google_fonts_parts/part_t.dart'; +import 'google_fonts_parts/part_u.dart'; +import 'google_fonts_parts/part_v.dart'; +import 'google_fonts_parts/part_w.dart'; +import 'google_fonts_parts/part_x.dart'; +import 'google_fonts_parts/part_y.dart'; +import 'google_fonts_parts/part_z.dart'; /// A collection of properties used to specify custom behavior of the /// GoogleFonts library. @@ -3984,3873 +3986,11372 @@ class GoogleFonts { return fonts[fontFamily]!(textTheme); } + /// See [PartA.aBeeZee]. static const aBeeZee = PartA.aBeeZee; + + /// See [PartA.aBeeZeeTextTheme]. static const aBeeZeeTextTheme = PartA.aBeeZeeTextTheme; + + /// See [PartA.aDLaMDisplay]. static const aDLaMDisplay = PartA.aDLaMDisplay; + + /// See [PartA.aDLaMDisplayTextTheme]. static const aDLaMDisplayTextTheme = PartA.aDLaMDisplayTextTheme; + + /// See [PartA.arOneSans]. static const arOneSans = PartA.arOneSans; + + /// See [PartA.arOneSansTextTheme]. static const arOneSansTextTheme = PartA.arOneSansTextTheme; + + /// See [PartA.abel]. static const abel = PartA.abel; + + /// See [PartA.abelTextTheme]. static const abelTextTheme = PartA.abelTextTheme; + + /// See [PartA.abhayaLibre]. static const abhayaLibre = PartA.abhayaLibre; + + /// See [PartA.abhayaLibreTextTheme]. static const abhayaLibreTextTheme = PartA.abhayaLibreTextTheme; + + /// See [PartA.aboreto]. static const aboreto = PartA.aboreto; + + /// See [PartA.aboretoTextTheme]. static const aboretoTextTheme = PartA.aboretoTextTheme; + + /// See [PartA.abrilFatface]. static const abrilFatface = PartA.abrilFatface; + + /// See [PartA.abrilFatfaceTextTheme]. static const abrilFatfaceTextTheme = PartA.abrilFatfaceTextTheme; + + /// See [PartA.abyssinicaSil]. static const abyssinicaSil = PartA.abyssinicaSil; + + /// See [PartA.abyssinicaSilTextTheme]. static const abyssinicaSilTextTheme = PartA.abyssinicaSilTextTheme; + + /// See [PartA.aclonica]. static const aclonica = PartA.aclonica; + + /// See [PartA.aclonicaTextTheme]. static const aclonicaTextTheme = PartA.aclonicaTextTheme; + + /// See [PartA.acme]. static const acme = PartA.acme; + + /// See [PartA.acmeTextTheme]. static const acmeTextTheme = PartA.acmeTextTheme; + + /// See [PartA.actor]. static const actor = PartA.actor; + + /// See [PartA.actorTextTheme]. static const actorTextTheme = PartA.actorTextTheme; + + /// See [PartA.adamina]. static const adamina = PartA.adamina; + + /// See [PartA.adaminaTextTheme]. static const adaminaTextTheme = PartA.adaminaTextTheme; + + /// See [PartA.adventPro]. static const adventPro = PartA.adventPro; + + /// See [PartA.adventProTextTheme]. static const adventProTextTheme = PartA.adventProTextTheme; + + /// See [PartA.afacad]. static const afacad = PartA.afacad; + + /// See [PartA.afacadTextTheme]. static const afacadTextTheme = PartA.afacadTextTheme; + + /// See [PartA.afacadFlux]. static const afacadFlux = PartA.afacadFlux; + + /// See [PartA.afacadFluxTextTheme]. static const afacadFluxTextTheme = PartA.afacadFluxTextTheme; + + /// See [PartA.agbalumo]. static const agbalumo = PartA.agbalumo; + + /// See [PartA.agbalumoTextTheme]. static const agbalumoTextTheme = PartA.agbalumoTextTheme; + + /// See [PartA.agdasima]. static const agdasima = PartA.agdasima; + + /// See [PartA.agdasimaTextTheme]. static const agdasimaTextTheme = PartA.agdasimaTextTheme; + + /// See [PartA.aguDisplay]. static const aguDisplay = PartA.aguDisplay; + + /// See [PartA.aguDisplayTextTheme]. static const aguDisplayTextTheme = PartA.aguDisplayTextTheme; + + /// See [PartA.aguafinaScript]. static const aguafinaScript = PartA.aguafinaScript; + + /// See [PartA.aguafinaScriptTextTheme]. static const aguafinaScriptTextTheme = PartA.aguafinaScriptTextTheme; + + /// See [PartA.akatab]. static const akatab = PartA.akatab; + + /// See [PartA.akatabTextTheme]. static const akatabTextTheme = PartA.akatabTextTheme; + + /// See [PartA.akayaKanadaka]. static const akayaKanadaka = PartA.akayaKanadaka; + + /// See [PartA.akayaKanadakaTextTheme]. static const akayaKanadakaTextTheme = PartA.akayaKanadakaTextTheme; + + /// See [PartA.akayaTelivigala]. static const akayaTelivigala = PartA.akayaTelivigala; + + /// See [PartA.akayaTelivigalaTextTheme]. static const akayaTelivigalaTextTheme = PartA.akayaTelivigalaTextTheme; + + /// See [PartA.akronim]. static const akronim = PartA.akronim; + + /// See [PartA.akronimTextTheme]. static const akronimTextTheme = PartA.akronimTextTheme; + + /// See [PartA.akshar]. static const akshar = PartA.akshar; + + /// See [PartA.aksharTextTheme]. static const aksharTextTheme = PartA.aksharTextTheme; + + /// See [PartA.aladin]. static const aladin = PartA.aladin; + + /// See [PartA.aladinTextTheme]. static const aladinTextTheme = PartA.aladinTextTheme; + + /// See [PartA.alanSans]. static const alanSans = PartA.alanSans; + + /// See [PartA.alanSansTextTheme]. static const alanSansTextTheme = PartA.alanSansTextTheme; + + /// See [PartA.alata]. static const alata = PartA.alata; + + /// See [PartA.alataTextTheme]. static const alataTextTheme = PartA.alataTextTheme; + + /// See [PartA.alatsi]. static const alatsi = PartA.alatsi; + + /// See [PartA.alatsiTextTheme]. static const alatsiTextTheme = PartA.alatsiTextTheme; + + /// See [PartA.albertSans]. static const albertSans = PartA.albertSans; + + /// See [PartA.albertSansTextTheme]. static const albertSansTextTheme = PartA.albertSansTextTheme; + + /// See [PartA.aldrich]. static const aldrich = PartA.aldrich; + + /// See [PartA.aldrichTextTheme]. static const aldrichTextTheme = PartA.aldrichTextTheme; + + /// See [PartA.alef]. static const alef = PartA.alef; + + /// See [PartA.alefTextTheme]. static const alefTextTheme = PartA.alefTextTheme; + + /// See [PartA.alegreya]. static const alegreya = PartA.alegreya; + + /// See [PartA.alegreyaTextTheme]. static const alegreyaTextTheme = PartA.alegreyaTextTheme; + + /// See [PartA.alegreyaSc]. static const alegreyaSc = PartA.alegreyaSc; + + /// See [PartA.alegreyaScTextTheme]. static const alegreyaScTextTheme = PartA.alegreyaScTextTheme; + + /// See [PartA.alegreyaSans]. static const alegreyaSans = PartA.alegreyaSans; + + /// See [PartA.alegreyaSansTextTheme]. static const alegreyaSansTextTheme = PartA.alegreyaSansTextTheme; + + /// See [PartA.alegreyaSansSc]. static const alegreyaSansSc = PartA.alegreyaSansSc; + + /// See [PartA.alegreyaSansScTextTheme]. static const alegreyaSansScTextTheme = PartA.alegreyaSansScTextTheme; + + /// See [PartA.aleo]. static const aleo = PartA.aleo; + + /// See [PartA.aleoTextTheme]. static const aleoTextTheme = PartA.aleoTextTheme; + + /// See [PartA.alexBrush]. static const alexBrush = PartA.alexBrush; + + /// See [PartA.alexBrushTextTheme]. static const alexBrushTextTheme = PartA.alexBrushTextTheme; + + /// See [PartA.alexandria]. static const alexandria = PartA.alexandria; + + /// See [PartA.alexandriaTextTheme]. static const alexandriaTextTheme = PartA.alexandriaTextTheme; + + /// See [PartA.alfaSlabOne]. static const alfaSlabOne = PartA.alfaSlabOne; + + /// See [PartA.alfaSlabOneTextTheme]. static const alfaSlabOneTextTheme = PartA.alfaSlabOneTextTheme; + + /// See [PartA.alice]. static const alice = PartA.alice; + + /// See [PartA.aliceTextTheme]. static const aliceTextTheme = PartA.aliceTextTheme; + + /// See [PartA.alike]. static const alike = PartA.alike; + + /// See [PartA.alikeTextTheme]. static const alikeTextTheme = PartA.alikeTextTheme; + + /// See [PartA.alikeAngular]. static const alikeAngular = PartA.alikeAngular; + + /// See [PartA.alikeAngularTextTheme]. static const alikeAngularTextTheme = PartA.alikeAngularTextTheme; + + /// See [PartA.alkalami]. static const alkalami = PartA.alkalami; + + /// See [PartA.alkalamiTextTheme]. static const alkalamiTextTheme = PartA.alkalamiTextTheme; + + /// See [PartA.alkatra]. static const alkatra = PartA.alkatra; + + /// See [PartA.alkatraTextTheme]. static const alkatraTextTheme = PartA.alkatraTextTheme; + + /// See [PartA.allan]. static const allan = PartA.allan; + + /// See [PartA.allanTextTheme]. static const allanTextTheme = PartA.allanTextTheme; + + /// See [PartA.allerta]. static const allerta = PartA.allerta; + + /// See [PartA.allertaTextTheme]. static const allertaTextTheme = PartA.allertaTextTheme; + + /// See [PartA.allertaStencil]. static const allertaStencil = PartA.allertaStencil; + + /// See [PartA.allertaStencilTextTheme]. static const allertaStencilTextTheme = PartA.allertaStencilTextTheme; + + /// See [PartA.allison]. static const allison = PartA.allison; + + /// See [PartA.allisonTextTheme]. static const allisonTextTheme = PartA.allisonTextTheme; + + /// See [PartA.allura]. static const allura = PartA.allura; + + /// See [PartA.alluraTextTheme]. static const alluraTextTheme = PartA.alluraTextTheme; + + /// See [PartA.almarai]. static const almarai = PartA.almarai; + + /// See [PartA.almaraiTextTheme]. static const almaraiTextTheme = PartA.almaraiTextTheme; + + /// See [PartA.almendra]. static const almendra = PartA.almendra; + + /// See [PartA.almendraTextTheme]. static const almendraTextTheme = PartA.almendraTextTheme; + + /// See [PartA.almendraDisplay]. static const almendraDisplay = PartA.almendraDisplay; + + /// See [PartA.almendraDisplayTextTheme]. static const almendraDisplayTextTheme = PartA.almendraDisplayTextTheme; + + /// See [PartA.almendraSc]. static const almendraSc = PartA.almendraSc; + + /// See [PartA.almendraScTextTheme]. static const almendraScTextTheme = PartA.almendraScTextTheme; + + /// See [PartA.alumniSans]. static const alumniSans = PartA.alumniSans; + + /// See [PartA.alumniSansTextTheme]. static const alumniSansTextTheme = PartA.alumniSansTextTheme; + + /// See [PartA.alumniSansCollegiateOne]. static const alumniSansCollegiateOne = PartA.alumniSansCollegiateOne; + + /// See [PartA.alumniSansCollegiateOneTextTheme]. static const alumniSansCollegiateOneTextTheme = PartA.alumniSansCollegiateOneTextTheme; + + /// See [PartA.alumniSansInlineOne]. static const alumniSansInlineOne = PartA.alumniSansInlineOne; + + /// See [PartA.alumniSansInlineOneTextTheme]. static const alumniSansInlineOneTextTheme = PartA.alumniSansInlineOneTextTheme; + + /// See [PartA.alumniSansPinstripe]. static const alumniSansPinstripe = PartA.alumniSansPinstripe; + + /// See [PartA.alumniSansPinstripeTextTheme]. static const alumniSansPinstripeTextTheme = PartA.alumniSansPinstripeTextTheme; + + /// See [PartA.alumniSansSc]. static const alumniSansSc = PartA.alumniSansSc; + + /// See [PartA.alumniSansScTextTheme]. static const alumniSansScTextTheme = PartA.alumniSansScTextTheme; + + /// See [PartA.amarante]. static const amarante = PartA.amarante; + + /// See [PartA.amaranteTextTheme]. static const amaranteTextTheme = PartA.amaranteTextTheme; + + /// See [PartA.amaranth]. static const amaranth = PartA.amaranth; + + /// See [PartA.amaranthTextTheme]. static const amaranthTextTheme = PartA.amaranthTextTheme; + + /// See [PartA.amaticSc]. static const amaticSc = PartA.amaticSc; + + /// See [PartA.amaticScTextTheme]. static const amaticScTextTheme = PartA.amaticScTextTheme; + + /// See [PartA.amethysta]. static const amethysta = PartA.amethysta; + + /// See [PartA.amethystaTextTheme]. static const amethystaTextTheme = PartA.amethystaTextTheme; + + /// See [PartA.amiko]. static const amiko = PartA.amiko; + + /// See [PartA.amikoTextTheme]. static const amikoTextTheme = PartA.amikoTextTheme; + + /// See [PartA.amiri]. static const amiri = PartA.amiri; + + /// See [PartA.amiriTextTheme]. static const amiriTextTheme = PartA.amiriTextTheme; + + /// See [PartA.amiriQuran]. static const amiriQuran = PartA.amiriQuran; + + /// See [PartA.amiriQuranTextTheme]. static const amiriQuranTextTheme = PartA.amiriQuranTextTheme; + + /// See [PartA.amita]. static const amita = PartA.amita; + + /// See [PartA.amitaTextTheme]. static const amitaTextTheme = PartA.amitaTextTheme; + + /// See [PartA.anaheim]. static const anaheim = PartA.anaheim; + + /// See [PartA.anaheimTextTheme]. static const anaheimTextTheme = PartA.anaheimTextTheme; + + /// See [PartA.ancizarSans]. static const ancizarSans = PartA.ancizarSans; + + /// See [PartA.ancizarSansTextTheme]. static const ancizarSansTextTheme = PartA.ancizarSansTextTheme; + + /// See [PartA.ancizarSerif]. static const ancizarSerif = PartA.ancizarSerif; + + /// See [PartA.ancizarSerifTextTheme]. static const ancizarSerifTextTheme = PartA.ancizarSerifTextTheme; + + /// See [PartA.andadaPro]. static const andadaPro = PartA.andadaPro; + + /// See [PartA.andadaProTextTheme]. static const andadaProTextTheme = PartA.andadaProTextTheme; + + /// See [PartA.andika]. static const andika = PartA.andika; + + /// See [PartA.andikaTextTheme]. static const andikaTextTheme = PartA.andikaTextTheme; + + /// See [PartA.anekBangla]. static const anekBangla = PartA.anekBangla; + + /// See [PartA.anekBanglaTextTheme]. static const anekBanglaTextTheme = PartA.anekBanglaTextTheme; + + /// See [PartA.anekDevanagari]. static const anekDevanagari = PartA.anekDevanagari; + + /// See [PartA.anekDevanagariTextTheme]. static const anekDevanagariTextTheme = PartA.anekDevanagariTextTheme; + + /// See [PartA.anekGujarati]. static const anekGujarati = PartA.anekGujarati; + + /// See [PartA.anekGujaratiTextTheme]. static const anekGujaratiTextTheme = PartA.anekGujaratiTextTheme; + + /// See [PartA.anekGurmukhi]. static const anekGurmukhi = PartA.anekGurmukhi; + + /// See [PartA.anekGurmukhiTextTheme]. static const anekGurmukhiTextTheme = PartA.anekGurmukhiTextTheme; + + /// See [PartA.anekKannada]. static const anekKannada = PartA.anekKannada; + + /// See [PartA.anekKannadaTextTheme]. static const anekKannadaTextTheme = PartA.anekKannadaTextTheme; + + /// See [PartA.anekLatin]. static const anekLatin = PartA.anekLatin; + + /// See [PartA.anekLatinTextTheme]. static const anekLatinTextTheme = PartA.anekLatinTextTheme; + + /// See [PartA.anekMalayalam]. static const anekMalayalam = PartA.anekMalayalam; + + /// See [PartA.anekMalayalamTextTheme]. static const anekMalayalamTextTheme = PartA.anekMalayalamTextTheme; + + /// See [PartA.anekOdia]. static const anekOdia = PartA.anekOdia; + + /// See [PartA.anekOdiaTextTheme]. static const anekOdiaTextTheme = PartA.anekOdiaTextTheme; + + /// See [PartA.anekTamil]. static const anekTamil = PartA.anekTamil; + + /// See [PartA.anekTamilTextTheme]. static const anekTamilTextTheme = PartA.anekTamilTextTheme; + + /// See [PartA.anekTelugu]. static const anekTelugu = PartA.anekTelugu; + + /// See [PartA.anekTeluguTextTheme]. static const anekTeluguTextTheme = PartA.anekTeluguTextTheme; + + /// See [PartA.angkor]. static const angkor = PartA.angkor; + + /// See [PartA.angkorTextTheme]. static const angkorTextTheme = PartA.angkorTextTheme; + + /// See [PartA.annapurnaSil]. static const annapurnaSil = PartA.annapurnaSil; + + /// See [PartA.annapurnaSilTextTheme]. static const annapurnaSilTextTheme = PartA.annapurnaSilTextTheme; + + /// See [PartA.annieUseYourTelescope]. static const annieUseYourTelescope = PartA.annieUseYourTelescope; + + /// See [PartA.annieUseYourTelescopeTextTheme]. static const annieUseYourTelescopeTextTheme = PartA.annieUseYourTelescopeTextTheme; + + /// See [PartA.anonymousPro]. static const anonymousPro = PartA.anonymousPro; + + /// See [PartA.anonymousProTextTheme]. static const anonymousProTextTheme = PartA.anonymousProTextTheme; + + /// See [PartA.anta]. static const anta = PartA.anta; + + /// See [PartA.antaTextTheme]. static const antaTextTheme = PartA.antaTextTheme; + + /// See [PartA.antic]. static const antic = PartA.antic; + + /// See [PartA.anticTextTheme]. static const anticTextTheme = PartA.anticTextTheme; + + /// See [PartA.anticDidone]. static const anticDidone = PartA.anticDidone; + + /// See [PartA.anticDidoneTextTheme]. static const anticDidoneTextTheme = PartA.anticDidoneTextTheme; + + /// See [PartA.anticSlab]. static const anticSlab = PartA.anticSlab; + + /// See [PartA.anticSlabTextTheme]. static const anticSlabTextTheme = PartA.anticSlabTextTheme; + + /// See [PartA.anton]. static const anton = PartA.anton; + + /// See [PartA.antonTextTheme]. static const antonTextTheme = PartA.antonTextTheme; + + /// See [PartA.antonSc]. static const antonSc = PartA.antonSc; + + /// See [PartA.antonScTextTheme]. static const antonScTextTheme = PartA.antonScTextTheme; + + /// See [PartA.antonio]. static const antonio = PartA.antonio; + + /// See [PartA.antonioTextTheme]. static const antonioTextTheme = PartA.antonioTextTheme; + + /// See [PartA.anuphan]. static const anuphan = PartA.anuphan; + + /// See [PartA.anuphanTextTheme]. static const anuphanTextTheme = PartA.anuphanTextTheme; + + /// See [PartA.anybody]. static const anybody = PartA.anybody; + + /// See [PartA.anybodyTextTheme]. static const anybodyTextTheme = PartA.anybodyTextTheme; + + /// See [PartA.aoboshiOne]. static const aoboshiOne = PartA.aoboshiOne; + + /// See [PartA.aoboshiOneTextTheme]. static const aoboshiOneTextTheme = PartA.aoboshiOneTextTheme; + + /// See [PartA.arapey]. static const arapey = PartA.arapey; + + /// See [PartA.arapeyTextTheme]. static const arapeyTextTheme = PartA.arapeyTextTheme; + + /// See [PartA.arbutus]. static const arbutus = PartA.arbutus; + + /// See [PartA.arbutusTextTheme]. static const arbutusTextTheme = PartA.arbutusTextTheme; + + /// See [PartA.arbutusSlab]. static const arbutusSlab = PartA.arbutusSlab; + + /// See [PartA.arbutusSlabTextTheme]. static const arbutusSlabTextTheme = PartA.arbutusSlabTextTheme; + + /// See [PartA.architectsDaughter]. static const architectsDaughter = PartA.architectsDaughter; + + /// See [PartA.architectsDaughterTextTheme]. static const architectsDaughterTextTheme = PartA.architectsDaughterTextTheme; + + /// See [PartA.archivo]. static const archivo = PartA.archivo; + + /// See [PartA.archivoTextTheme]. static const archivoTextTheme = PartA.archivoTextTheme; + + /// See [PartA.archivoBlack]. static const archivoBlack = PartA.archivoBlack; + + /// See [PartA.archivoBlackTextTheme]. static const archivoBlackTextTheme = PartA.archivoBlackTextTheme; + + /// See [PartA.archivoNarrow]. static const archivoNarrow = PartA.archivoNarrow; + + /// See [PartA.archivoNarrowTextTheme]. static const archivoNarrowTextTheme = PartA.archivoNarrowTextTheme; + + /// See [PartA.areYouSerious]. static const areYouSerious = PartA.areYouSerious; + + /// See [PartA.areYouSeriousTextTheme]. static const areYouSeriousTextTheme = PartA.areYouSeriousTextTheme; + + /// See [PartA.arefRuqaa]. static const arefRuqaa = PartA.arefRuqaa; + + /// See [PartA.arefRuqaaTextTheme]. static const arefRuqaaTextTheme = PartA.arefRuqaaTextTheme; + + /// See [PartA.arefRuqaaInk]. static const arefRuqaaInk = PartA.arefRuqaaInk; + + /// See [PartA.arefRuqaaInkTextTheme]. static const arefRuqaaInkTextTheme = PartA.arefRuqaaInkTextTheme; + + /// See [PartA.arima]. static const arima = PartA.arima; + + /// See [PartA.arimaTextTheme]. static const arimaTextTheme = PartA.arimaTextTheme; + + /// See [PartA.arimo]. static const arimo = PartA.arimo; + + /// See [PartA.arimoTextTheme]. static const arimoTextTheme = PartA.arimoTextTheme; + + /// See [PartA.arizonia]. static const arizonia = PartA.arizonia; + + /// See [PartA.arizoniaTextTheme]. static const arizoniaTextTheme = PartA.arizoniaTextTheme; + + /// See [PartA.armata]. static const armata = PartA.armata; + + /// See [PartA.armataTextTheme]. static const armataTextTheme = PartA.armataTextTheme; + + /// See [PartA.arsenal]. static const arsenal = PartA.arsenal; + + /// See [PartA.arsenalTextTheme]. static const arsenalTextTheme = PartA.arsenalTextTheme; + + /// See [PartA.arsenalSc]. static const arsenalSc = PartA.arsenalSc; + + /// See [PartA.arsenalScTextTheme]. static const arsenalScTextTheme = PartA.arsenalScTextTheme; + + /// See [PartA.artifika]. static const artifika = PartA.artifika; + + /// See [PartA.artifikaTextTheme]. static const artifikaTextTheme = PartA.artifikaTextTheme; + + /// See [PartA.arvo]. static const arvo = PartA.arvo; + + /// See [PartA.arvoTextTheme]. static const arvoTextTheme = PartA.arvoTextTheme; + + /// See [PartA.arya]. static const arya = PartA.arya; + + /// See [PartA.aryaTextTheme]. static const aryaTextTheme = PartA.aryaTextTheme; + + /// See [PartA.asap]. static const asap = PartA.asap; + + /// See [PartA.asapTextTheme]. static const asapTextTheme = PartA.asapTextTheme; + + /// See [PartA.asar]. static const asar = PartA.asar; + + /// See [PartA.asarTextTheme]. static const asarTextTheme = PartA.asarTextTheme; + + /// See [PartA.asimovian]. static const asimovian = PartA.asimovian; + + /// See [PartA.asimovianTextTheme]. static const asimovianTextTheme = PartA.asimovianTextTheme; + + /// See [PartA.asset]. static const asset = PartA.asset; + + /// See [PartA.assetTextTheme]. static const assetTextTheme = PartA.assetTextTheme; + + /// See [PartA.assistant]. static const assistant = PartA.assistant; + + /// See [PartA.assistantTextTheme]. static const assistantTextTheme = PartA.assistantTextTheme; + + /// See [PartA.astaSans]. static const astaSans = PartA.astaSans; + + /// See [PartA.astaSansTextTheme]. static const astaSansTextTheme = PartA.astaSansTextTheme; + + /// See [PartA.astloch]. static const astloch = PartA.astloch; + + /// See [PartA.astlochTextTheme]. static const astlochTextTheme = PartA.astlochTextTheme; + + /// See [PartA.asul]. static const asul = PartA.asul; + + /// See [PartA.asulTextTheme]. static const asulTextTheme = PartA.asulTextTheme; + + /// See [PartA.athiti]. static const athiti = PartA.athiti; + + /// See [PartA.athitiTextTheme]. static const athitiTextTheme = PartA.athitiTextTheme; + + /// See [PartA.atkinsonHyperlegible]. static const atkinsonHyperlegible = PartA.atkinsonHyperlegible; + + /// See [PartA.atkinsonHyperlegibleTextTheme]. static const atkinsonHyperlegibleTextTheme = PartA.atkinsonHyperlegibleTextTheme; + + /// See [PartA.atkinsonHyperlegibleMono]. static const atkinsonHyperlegibleMono = PartA.atkinsonHyperlegibleMono; + + /// See [PartA.atkinsonHyperlegibleMonoTextTheme]. static const atkinsonHyperlegibleMonoTextTheme = PartA.atkinsonHyperlegibleMonoTextTheme; + + /// See [PartA.atkinsonHyperlegibleNext]. static const atkinsonHyperlegibleNext = PartA.atkinsonHyperlegibleNext; + + /// See [PartA.atkinsonHyperlegibleNextTextTheme]. static const atkinsonHyperlegibleNextTextTheme = PartA.atkinsonHyperlegibleNextTextTheme; + + /// See [PartA.atma]. static const atma = PartA.atma; + + /// See [PartA.atmaTextTheme]. static const atmaTextTheme = PartA.atmaTextTheme; + + /// See [PartA.atomicAge]. static const atomicAge = PartA.atomicAge; + + /// See [PartA.atomicAgeTextTheme]. static const atomicAgeTextTheme = PartA.atomicAgeTextTheme; + + /// See [PartA.aubrey]. static const aubrey = PartA.aubrey; + + /// See [PartA.aubreyTextTheme]. static const aubreyTextTheme = PartA.aubreyTextTheme; + + /// See [PartA.audiowide]. static const audiowide = PartA.audiowide; + + /// See [PartA.audiowideTextTheme]. static const audiowideTextTheme = PartA.audiowideTextTheme; + + /// See [PartA.autourOne]. static const autourOne = PartA.autourOne; + + /// See [PartA.autourOneTextTheme]. static const autourOneTextTheme = PartA.autourOneTextTheme; + + /// See [PartA.average]. static const average = PartA.average; + + /// See [PartA.averageTextTheme]. static const averageTextTheme = PartA.averageTextTheme; + + /// See [PartA.averageSans]. static const averageSans = PartA.averageSans; + + /// See [PartA.averageSansTextTheme]. static const averageSansTextTheme = PartA.averageSansTextTheme; + + /// See [PartA.averiaGruesaLibre]. static const averiaGruesaLibre = PartA.averiaGruesaLibre; + + /// See [PartA.averiaGruesaLibreTextTheme]. static const averiaGruesaLibreTextTheme = PartA.averiaGruesaLibreTextTheme; + + /// See [PartA.averiaLibre]. static const averiaLibre = PartA.averiaLibre; + + /// See [PartA.averiaLibreTextTheme]. static const averiaLibreTextTheme = PartA.averiaLibreTextTheme; + + /// See [PartA.averiaSansLibre]. static const averiaSansLibre = PartA.averiaSansLibre; + + /// See [PartA.averiaSansLibreTextTheme]. static const averiaSansLibreTextTheme = PartA.averiaSansLibreTextTheme; + + /// See [PartA.averiaSerifLibre]. static const averiaSerifLibre = PartA.averiaSerifLibre; + + /// See [PartA.averiaSerifLibreTextTheme]. static const averiaSerifLibreTextTheme = PartA.averiaSerifLibreTextTheme; + + /// See [PartA.azeretMono]. static const azeretMono = PartA.azeretMono; + + /// See [PartA.azeretMonoTextTheme]. static const azeretMonoTextTheme = PartA.azeretMonoTextTheme; + + /// See [PartB.b612]. static const b612 = PartB.b612; + + /// See [PartB.b612TextTheme]. static const b612TextTheme = PartB.b612TextTheme; + + /// See [PartB.b612Mono]. static const b612Mono = PartB.b612Mono; + + /// See [PartB.b612MonoTextTheme]. static const b612MonoTextTheme = PartB.b612MonoTextTheme; + + /// See [PartB.bizUDGothic]. static const bizUDGothic = PartB.bizUDGothic; + + /// See [PartB.bizUDGothicTextTheme]. static const bizUDGothicTextTheme = PartB.bizUDGothicTextTheme; + + /// See [PartB.bizUDMincho]. static const bizUDMincho = PartB.bizUDMincho; + + /// See [PartB.bizUDMinchoTextTheme]. static const bizUDMinchoTextTheme = PartB.bizUDMinchoTextTheme; + + /// See [PartB.bizUDPGothic]. static const bizUDPGothic = PartB.bizUDPGothic; + + /// See [PartB.bizUDPGothicTextTheme]. static const bizUDPGothicTextTheme = PartB.bizUDPGothicTextTheme; + + /// See [PartB.bizUDPMincho]. static const bizUDPMincho = PartB.bizUDPMincho; + + /// See [PartB.bizUDPMinchoTextTheme]. static const bizUDPMinchoTextTheme = PartB.bizUDPMinchoTextTheme; + + /// See [PartB.babylonica]. static const babylonica = PartB.babylonica; + + /// See [PartB.babylonicaTextTheme]. static const babylonicaTextTheme = PartB.babylonicaTextTheme; + + /// See [PartB.bacasimeAntique]. static const bacasimeAntique = PartB.bacasimeAntique; + + /// See [PartB.bacasimeAntiqueTextTheme]. static const bacasimeAntiqueTextTheme = PartB.bacasimeAntiqueTextTheme; + + /// See [PartB.badScript]. static const badScript = PartB.badScript; + + /// See [PartB.badScriptTextTheme]. static const badScriptTextTheme = PartB.badScriptTextTheme; + + /// See [PartB.badeenDisplay]. static const badeenDisplay = PartB.badeenDisplay; + + /// See [PartB.badeenDisplayTextTheme]. static const badeenDisplayTextTheme = PartB.badeenDisplayTextTheme; + + /// See [PartB.bagelFatOne]. static const bagelFatOne = PartB.bagelFatOne; + + /// See [PartB.bagelFatOneTextTheme]. static const bagelFatOneTextTheme = PartB.bagelFatOneTextTheme; + + /// See [PartB.bahiana]. static const bahiana = PartB.bahiana; + + /// See [PartB.bahianaTextTheme]. static const bahianaTextTheme = PartB.bahianaTextTheme; + + /// See [PartB.bahianita]. static const bahianita = PartB.bahianita; + + /// See [PartB.bahianitaTextTheme]. static const bahianitaTextTheme = PartB.bahianitaTextTheme; + + /// See [PartB.baiJamjuree]. static const baiJamjuree = PartB.baiJamjuree; + + /// See [PartB.baiJamjureeTextTheme]. static const baiJamjureeTextTheme = PartB.baiJamjureeTextTheme; + + /// See [PartB.bakbakOne]. static const bakbakOne = PartB.bakbakOne; + + /// See [PartB.bakbakOneTextTheme]. static const bakbakOneTextTheme = PartB.bakbakOneTextTheme; + + /// See [PartB.ballet]. static const ballet = PartB.ballet; + + /// See [PartB.balletTextTheme]. static const balletTextTheme = PartB.balletTextTheme; + + /// See [PartB.baloo2]. static const baloo2 = PartB.baloo2; + + /// See [PartB.baloo2TextTheme]. static const baloo2TextTheme = PartB.baloo2TextTheme; + + /// See [PartB.balooBhai2]. static const balooBhai2 = PartB.balooBhai2; + + /// See [PartB.balooBhai2TextTheme]. static const balooBhai2TextTheme = PartB.balooBhai2TextTheme; + + /// See [PartB.balooBhaijaan2]. static const balooBhaijaan2 = PartB.balooBhaijaan2; + + /// See [PartB.balooBhaijaan2TextTheme]. static const balooBhaijaan2TextTheme = PartB.balooBhaijaan2TextTheme; + + /// See [PartB.balooBhaina2]. static const balooBhaina2 = PartB.balooBhaina2; + + /// See [PartB.balooBhaina2TextTheme]. static const balooBhaina2TextTheme = PartB.balooBhaina2TextTheme; + + /// See [PartB.balooChettan2]. static const balooChettan2 = PartB.balooChettan2; + + /// See [PartB.balooChettan2TextTheme]. static const balooChettan2TextTheme = PartB.balooChettan2TextTheme; + + /// See [PartB.balooDa2]. static const balooDa2 = PartB.balooDa2; + + /// See [PartB.balooDa2TextTheme]. static const balooDa2TextTheme = PartB.balooDa2TextTheme; + + /// See [PartB.balooPaaji2]. static const balooPaaji2 = PartB.balooPaaji2; + + /// See [PartB.balooPaaji2TextTheme]. static const balooPaaji2TextTheme = PartB.balooPaaji2TextTheme; + + /// See [PartB.balooTamma2]. static const balooTamma2 = PartB.balooTamma2; + + /// See [PartB.balooTamma2TextTheme]. static const balooTamma2TextTheme = PartB.balooTamma2TextTheme; + + /// See [PartB.balooTammudu2]. static const balooTammudu2 = PartB.balooTammudu2; + + /// See [PartB.balooTammudu2TextTheme]. static const balooTammudu2TextTheme = PartB.balooTammudu2TextTheme; + + /// See [PartB.balooThambi2]. static const balooThambi2 = PartB.balooThambi2; + + /// See [PartB.balooThambi2TextTheme]. static const balooThambi2TextTheme = PartB.balooThambi2TextTheme; + + /// See [PartB.balsamiqSans]. static const balsamiqSans = PartB.balsamiqSans; + + /// See [PartB.balsamiqSansTextTheme]. static const balsamiqSansTextTheme = PartB.balsamiqSansTextTheme; + + /// See [PartB.balthazar]. static const balthazar = PartB.balthazar; + + /// See [PartB.balthazarTextTheme]. static const balthazarTextTheme = PartB.balthazarTextTheme; + + /// See [PartB.bangers]. static const bangers = PartB.bangers; + + /// See [PartB.bangersTextTheme]. static const bangersTextTheme = PartB.bangersTextTheme; + + /// See [PartB.barlow]. static const barlow = PartB.barlow; + + /// See [PartB.barlowTextTheme]. static const barlowTextTheme = PartB.barlowTextTheme; + + /// See [PartB.barlowCondensed]. static const barlowCondensed = PartB.barlowCondensed; + + /// See [PartB.barlowCondensedTextTheme]. static const barlowCondensedTextTheme = PartB.barlowCondensedTextTheme; + + /// See [PartB.barlowSemiCondensed]. static const barlowSemiCondensed = PartB.barlowSemiCondensed; + + /// See [PartB.barlowSemiCondensedTextTheme]. static const barlowSemiCondensedTextTheme = PartB.barlowSemiCondensedTextTheme; + + /// See [PartB.barriecito]. static const barriecito = PartB.barriecito; + + /// See [PartB.barriecitoTextTheme]. static const barriecitoTextTheme = PartB.barriecitoTextTheme; + + /// See [PartB.barrio]. static const barrio = PartB.barrio; + + /// See [PartB.barrioTextTheme]. static const barrioTextTheme = PartB.barrioTextTheme; + + /// See [PartB.basic]. static const basic = PartB.basic; + + /// See [PartB.basicTextTheme]. static const basicTextTheme = PartB.basicTextTheme; + + /// See [PartB.baskervville]. static const baskervville = PartB.baskervville; + + /// See [PartB.baskervvilleTextTheme]. static const baskervvilleTextTheme = PartB.baskervvilleTextTheme; + + /// See [PartB.baskervvilleSc]. static const baskervvilleSc = PartB.baskervvilleSc; + + /// See [PartB.baskervvilleScTextTheme]. static const baskervvilleScTextTheme = PartB.baskervvilleScTextTheme; + + /// See [PartB.battambang]. static const battambang = PartB.battambang; + + /// See [PartB.battambangTextTheme]. static const battambangTextTheme = PartB.battambangTextTheme; + + /// See [PartB.baumans]. static const baumans = PartB.baumans; + + /// See [PartB.baumansTextTheme]. static const baumansTextTheme = PartB.baumansTextTheme; + + /// See [PartB.bayon]. static const bayon = PartB.bayon; + + /// See [PartB.bayonTextTheme]. static const bayonTextTheme = PartB.bayonTextTheme; + + /// See [PartB.beVietnamPro]. static const beVietnamPro = PartB.beVietnamPro; + + /// See [PartB.beVietnamProTextTheme]. static const beVietnamProTextTheme = PartB.beVietnamProTextTheme; + + /// See [PartB.beauRivage]. static const beauRivage = PartB.beauRivage; + + /// See [PartB.beauRivageTextTheme]. static const beauRivageTextTheme = PartB.beauRivageTextTheme; + + /// See [PartB.bebasNeue]. static const bebasNeue = PartB.bebasNeue; + + /// See [PartB.bebasNeueTextTheme]. static const bebasNeueTextTheme = PartB.bebasNeueTextTheme; + + /// See [PartB.beiruti]. static const beiruti = PartB.beiruti; + + /// See [PartB.beirutiTextTheme]. static const beirutiTextTheme = PartB.beirutiTextTheme; + + /// See [PartB.belanosima]. static const belanosima = PartB.belanosima; + + /// See [PartB.belanosimaTextTheme]. static const belanosimaTextTheme = PartB.belanosimaTextTheme; + + /// See [PartB.belgrano]. static const belgrano = PartB.belgrano; + + /// See [PartB.belgranoTextTheme]. static const belgranoTextTheme = PartB.belgranoTextTheme; + + /// See [PartB.bellefair]. static const bellefair = PartB.bellefair; + + /// See [PartB.bellefairTextTheme]. static const bellefairTextTheme = PartB.bellefairTextTheme; + + /// See [PartB.belleza]. static const belleza = PartB.belleza; + + /// See [PartB.bellezaTextTheme]. static const bellezaTextTheme = PartB.bellezaTextTheme; + + /// See [PartB.bellota]. static const bellota = PartB.bellota; + + /// See [PartB.bellotaTextTheme]. static const bellotaTextTheme = PartB.bellotaTextTheme; + + /// See [PartB.bellotaText]. static const bellotaText = PartB.bellotaText; + + /// See [PartB.bellotaTextTextTheme]. static const bellotaTextTextTheme = PartB.bellotaTextTextTheme; + + /// See [PartB.benchNine]. static const benchNine = PartB.benchNine; + + /// See [PartB.benchNineTextTheme]. static const benchNineTextTheme = PartB.benchNineTextTheme; + + /// See [PartB.benne]. static const benne = PartB.benne; + + /// See [PartB.benneTextTheme]. static const benneTextTheme = PartB.benneTextTheme; + + /// See [PartB.bentham]. static const bentham = PartB.bentham; + + /// See [PartB.benthamTextTheme]. static const benthamTextTheme = PartB.benthamTextTheme; + + /// See [PartB.berkshireSwash]. static const berkshireSwash = PartB.berkshireSwash; + + /// See [PartB.berkshireSwashTextTheme]. static const berkshireSwashTextTheme = PartB.berkshireSwashTextTheme; + + /// See [PartB.besley]. static const besley = PartB.besley; + + /// See [PartB.besleyTextTheme]. static const besleyTextTheme = PartB.besleyTextTheme; + + /// See [PartB.bethEllen]. static const bethEllen = PartB.bethEllen; + + /// See [PartB.bethEllenTextTheme]. static const bethEllenTextTheme = PartB.bethEllenTextTheme; + + /// See [PartB.bevan]. static const bevan = PartB.bevan; + + /// See [PartB.bevanTextTheme]. static const bevanTextTheme = PartB.bevanTextTheme; + + /// See [PartB.bhuTukaExpandedOne]. static const bhuTukaExpandedOne = PartB.bhuTukaExpandedOne; + + /// See [PartB.bhuTukaExpandedOneTextTheme]. static const bhuTukaExpandedOneTextTheme = PartB.bhuTukaExpandedOneTextTheme; + + /// See [PartB.bigShoulders]. static const bigShoulders = PartB.bigShoulders; + + /// See [PartB.bigShouldersTextTheme]. static const bigShouldersTextTheme = PartB.bigShouldersTextTheme; + + /// See [PartB.bigShouldersInline]. static const bigShouldersInline = PartB.bigShouldersInline; + + /// See [PartB.bigShouldersInlineTextTheme]. static const bigShouldersInlineTextTheme = PartB.bigShouldersInlineTextTheme; + + /// See [PartB.bigShouldersStencil]. static const bigShouldersStencil = PartB.bigShouldersStencil; + + /// See [PartB.bigShouldersStencilTextTheme]. static const bigShouldersStencilTextTheme = PartB.bigShouldersStencilTextTheme; + + /// See [PartB.bigelowRules]. static const bigelowRules = PartB.bigelowRules; + + /// See [PartB.bigelowRulesTextTheme]. static const bigelowRulesTextTheme = PartB.bigelowRulesTextTheme; + + /// See [PartB.bigshotOne]. static const bigshotOne = PartB.bigshotOne; + + /// See [PartB.bigshotOneTextTheme]. static const bigshotOneTextTheme = PartB.bigshotOneTextTheme; + + /// See [PartB.bilbo]. static const bilbo = PartB.bilbo; + + /// See [PartB.bilboTextTheme]. static const bilboTextTheme = PartB.bilboTextTheme; + + /// See [PartB.bilboSwashCaps]. static const bilboSwashCaps = PartB.bilboSwashCaps; + + /// See [PartB.bilboSwashCapsTextTheme]. static const bilboSwashCapsTextTheme = PartB.bilboSwashCapsTextTheme; + + /// See [PartB.bioRhyme]. static const bioRhyme = PartB.bioRhyme; + + /// See [PartB.bioRhymeTextTheme]. static const bioRhymeTextTheme = PartB.bioRhymeTextTheme; + + /// See [PartB.birthstone]. static const birthstone = PartB.birthstone; + + /// See [PartB.birthstoneTextTheme]. static const birthstoneTextTheme = PartB.birthstoneTextTheme; + + /// See [PartB.birthstoneBounce]. static const birthstoneBounce = PartB.birthstoneBounce; + + /// See [PartB.birthstoneBounceTextTheme]. static const birthstoneBounceTextTheme = PartB.birthstoneBounceTextTheme; + + /// See [PartB.biryani]. static const biryani = PartB.biryani; + + /// See [PartB.biryaniTextTheme]. static const biryaniTextTheme = PartB.biryaniTextTheme; + + /// See [PartB.bitcount]. static const bitcount = PartB.bitcount; + + /// See [PartB.bitcountTextTheme]. static const bitcountTextTheme = PartB.bitcountTextTheme; + + /// See [PartB.bitcountGridDouble]. static const bitcountGridDouble = PartB.bitcountGridDouble; + + /// See [PartB.bitcountGridDoubleTextTheme]. static const bitcountGridDoubleTextTheme = PartB.bitcountGridDoubleTextTheme; + + /// See [PartB.bitcountGridDoubleInk]. static const bitcountGridDoubleInk = PartB.bitcountGridDoubleInk; + + /// See [PartB.bitcountGridDoubleInkTextTheme]. static const bitcountGridDoubleInkTextTheme = PartB.bitcountGridDoubleInkTextTheme; + + /// See [PartB.bitcountGridSingle]. static const bitcountGridSingle = PartB.bitcountGridSingle; + + /// See [PartB.bitcountGridSingleTextTheme]. static const bitcountGridSingleTextTheme = PartB.bitcountGridSingleTextTheme; + + /// See [PartB.bitcountGridSingleInk]. static const bitcountGridSingleInk = PartB.bitcountGridSingleInk; + + /// See [PartB.bitcountGridSingleInkTextTheme]. static const bitcountGridSingleInkTextTheme = PartB.bitcountGridSingleInkTextTheme; + + /// See [PartB.bitcountInk]. static const bitcountInk = PartB.bitcountInk; + + /// See [PartB.bitcountInkTextTheme]. static const bitcountInkTextTheme = PartB.bitcountInkTextTheme; + + /// See [PartB.bitcountPropDouble]. static const bitcountPropDouble = PartB.bitcountPropDouble; + + /// See [PartB.bitcountPropDoubleTextTheme]. static const bitcountPropDoubleTextTheme = PartB.bitcountPropDoubleTextTheme; + + /// See [PartB.bitcountPropDoubleInk]. static const bitcountPropDoubleInk = PartB.bitcountPropDoubleInk; + + /// See [PartB.bitcountPropDoubleInkTextTheme]. static const bitcountPropDoubleInkTextTheme = PartB.bitcountPropDoubleInkTextTheme; + + /// See [PartB.bitcountPropSingle]. static const bitcountPropSingle = PartB.bitcountPropSingle; + + /// See [PartB.bitcountPropSingleTextTheme]. static const bitcountPropSingleTextTheme = PartB.bitcountPropSingleTextTheme; + + /// See [PartB.bitcountPropSingleInk]. static const bitcountPropSingleInk = PartB.bitcountPropSingleInk; + + /// See [PartB.bitcountPropSingleInkTextTheme]. static const bitcountPropSingleInkTextTheme = PartB.bitcountPropSingleInkTextTheme; + + /// See [PartB.bitcountSingle]. static const bitcountSingle = PartB.bitcountSingle; + + /// See [PartB.bitcountSingleTextTheme]. static const bitcountSingleTextTheme = PartB.bitcountSingleTextTheme; + + /// See [PartB.bitcountSingleInk]. static const bitcountSingleInk = PartB.bitcountSingleInk; + + /// See [PartB.bitcountSingleInkTextTheme]. static const bitcountSingleInkTextTheme = PartB.bitcountSingleInkTextTheme; + + /// See [PartB.bitter]. static const bitter = PartB.bitter; + + /// See [PartB.bitterTextTheme]. static const bitterTextTheme = PartB.bitterTextTheme; + + /// See [PartB.blackAndWhitePicture]. static const blackAndWhitePicture = PartB.blackAndWhitePicture; + + /// See [PartB.blackAndWhitePictureTextTheme]. static const blackAndWhitePictureTextTheme = PartB.blackAndWhitePictureTextTheme; + + /// See [PartB.blackHanSans]. static const blackHanSans = PartB.blackHanSans; + + /// See [PartB.blackHanSansTextTheme]. static const blackHanSansTextTheme = PartB.blackHanSansTextTheme; + + /// See [PartB.blackOpsOne]. static const blackOpsOne = PartB.blackOpsOne; + + /// See [PartB.blackOpsOneTextTheme]. static const blackOpsOneTextTheme = PartB.blackOpsOneTextTheme; + + /// See [PartB.blaka]. static const blaka = PartB.blaka; + + /// See [PartB.blakaTextTheme]. static const blakaTextTheme = PartB.blakaTextTheme; + + /// See [PartB.blakaHollow]. static const blakaHollow = PartB.blakaHollow; + + /// See [PartB.blakaHollowTextTheme]. static const blakaHollowTextTheme = PartB.blakaHollowTextTheme; + + /// See [PartB.blakaInk]. static const blakaInk = PartB.blakaInk; + + /// See [PartB.blakaInkTextTheme]. static const blakaInkTextTheme = PartB.blakaInkTextTheme; + + /// See [PartB.blinker]. static const blinker = PartB.blinker; + + /// See [PartB.blinkerTextTheme]. static const blinkerTextTheme = PartB.blinkerTextTheme; + + /// See [PartB.bodoniModa]. static const bodoniModa = PartB.bodoniModa; + + /// See [PartB.bodoniModaTextTheme]. static const bodoniModaTextTheme = PartB.bodoniModaTextTheme; + + /// See [PartB.bodoniModaSc]. static const bodoniModaSc = PartB.bodoniModaSc; + + /// See [PartB.bodoniModaScTextTheme]. static const bodoniModaScTextTheme = PartB.bodoniModaScTextTheme; + + /// See [PartB.bokor]. static const bokor = PartB.bokor; + + /// See [PartB.bokorTextTheme]. static const bokorTextTheme = PartB.bokorTextTheme; + + /// See [PartB.boldonse]. static const boldonse = PartB.boldonse; + + /// See [PartB.boldonseTextTheme]. static const boldonseTextTheme = PartB.boldonseTextTheme; + + /// See [PartB.bonaNova]. static const bonaNova = PartB.bonaNova; + + /// See [PartB.bonaNovaTextTheme]. static const bonaNovaTextTheme = PartB.bonaNovaTextTheme; + + /// See [PartB.bonaNovaSc]. static const bonaNovaSc = PartB.bonaNovaSc; + + /// See [PartB.bonaNovaScTextTheme]. static const bonaNovaScTextTheme = PartB.bonaNovaScTextTheme; + + /// See [PartB.bonbon]. static const bonbon = PartB.bonbon; + + /// See [PartB.bonbonTextTheme]. static const bonbonTextTheme = PartB.bonbonTextTheme; + + /// See [PartB.bonheurRoyale]. static const bonheurRoyale = PartB.bonheurRoyale; + + /// See [PartB.bonheurRoyaleTextTheme]. static const bonheurRoyaleTextTheme = PartB.bonheurRoyaleTextTheme; + + /// See [PartB.boogaloo]. static const boogaloo = PartB.boogaloo; + + /// See [PartB.boogalooTextTheme]. static const boogalooTextTheme = PartB.boogalooTextTheme; + + /// See [PartB.borel]. static const borel = PartB.borel; + + /// See [PartB.borelTextTheme]. static const borelTextTheme = PartB.borelTextTheme; + + /// See [PartB.bowlbyOne]. static const bowlbyOne = PartB.bowlbyOne; + + /// See [PartB.bowlbyOneTextTheme]. static const bowlbyOneTextTheme = PartB.bowlbyOneTextTheme; + + /// See [PartB.bowlbyOneSc]. static const bowlbyOneSc = PartB.bowlbyOneSc; + + /// See [PartB.bowlbyOneScTextTheme]. static const bowlbyOneScTextTheme = PartB.bowlbyOneScTextTheme; + + /// See [PartB.braahOne]. static const braahOne = PartB.braahOne; + + /// See [PartB.braahOneTextTheme]. static const braahOneTextTheme = PartB.braahOneTextTheme; + + /// See [PartB.brawler]. static const brawler = PartB.brawler; + + /// See [PartB.brawlerTextTheme]. static const brawlerTextTheme = PartB.brawlerTextTheme; + + /// See [PartB.breeSerif]. static const breeSerif = PartB.breeSerif; + + /// See [PartB.breeSerifTextTheme]. static const breeSerifTextTheme = PartB.breeSerifTextTheme; + + /// See [PartB.bricolageGrotesque]. static const bricolageGrotesque = PartB.bricolageGrotesque; + + /// See [PartB.bricolageGrotesqueTextTheme]. static const bricolageGrotesqueTextTheme = PartB.bricolageGrotesqueTextTheme; + + /// See [PartB.brunoAce]. static const brunoAce = PartB.brunoAce; + + /// See [PartB.brunoAceTextTheme]. static const brunoAceTextTheme = PartB.brunoAceTextTheme; + + /// See [PartB.brunoAceSc]. static const brunoAceSc = PartB.brunoAceSc; + + /// See [PartB.brunoAceScTextTheme]. static const brunoAceScTextTheme = PartB.brunoAceScTextTheme; + + /// See [PartB.brygada1918]. static const brygada1918 = PartB.brygada1918; + + /// See [PartB.brygada1918TextTheme]. static const brygada1918TextTheme = PartB.brygada1918TextTheme; + + /// See [PartB.bubblegumSans]. static const bubblegumSans = PartB.bubblegumSans; + + /// See [PartB.bubblegumSansTextTheme]. static const bubblegumSansTextTheme = PartB.bubblegumSansTextTheme; + + /// See [PartB.bubblerOne]. static const bubblerOne = PartB.bubblerOne; + + /// See [PartB.bubblerOneTextTheme]. static const bubblerOneTextTheme = PartB.bubblerOneTextTheme; + + /// See [PartB.buda]. static const buda = PartB.buda; + + /// See [PartB.budaTextTheme]. static const budaTextTheme = PartB.budaTextTheme; + + /// See [PartB.buenard]. static const buenard = PartB.buenard; + + /// See [PartB.buenardTextTheme]. static const buenardTextTheme = PartB.buenardTextTheme; + + /// See [PartB.bungee]. static const bungee = PartB.bungee; + + /// See [PartB.bungeeTextTheme]. static const bungeeTextTheme = PartB.bungeeTextTheme; + + /// See [PartB.bungeeHairline]. static const bungeeHairline = PartB.bungeeHairline; + + /// See [PartB.bungeeHairlineTextTheme]. static const bungeeHairlineTextTheme = PartB.bungeeHairlineTextTheme; + + /// See [PartB.bungeeInline]. static const bungeeInline = PartB.bungeeInline; + + /// See [PartB.bungeeInlineTextTheme]. static const bungeeInlineTextTheme = PartB.bungeeInlineTextTheme; + + /// See [PartB.bungeeOutline]. static const bungeeOutline = PartB.bungeeOutline; + + /// See [PartB.bungeeOutlineTextTheme]. static const bungeeOutlineTextTheme = PartB.bungeeOutlineTextTheme; + + /// See [PartB.bungeeShade]. static const bungeeShade = PartB.bungeeShade; + + /// See [PartB.bungeeShadeTextTheme]. static const bungeeShadeTextTheme = PartB.bungeeShadeTextTheme; + + /// See [PartB.bungeeSpice]. static const bungeeSpice = PartB.bungeeSpice; + + /// See [PartB.bungeeSpiceTextTheme]. static const bungeeSpiceTextTheme = PartB.bungeeSpiceTextTheme; + + /// See [PartB.bungeeTint]. static const bungeeTint = PartB.bungeeTint; + + /// See [PartB.bungeeTintTextTheme]. static const bungeeTintTextTheme = PartB.bungeeTintTextTheme; + + /// See [PartB.butcherman]. static const butcherman = PartB.butcherman; + + /// See [PartB.butchermanTextTheme]. static const butchermanTextTheme = PartB.butchermanTextTheme; + + /// See [PartB.butterflyKids]. static const butterflyKids = PartB.butterflyKids; + + /// See [PartB.butterflyKidsTextTheme]. static const butterflyKidsTextTheme = PartB.butterflyKidsTextTheme; + + /// See [PartB.bytesized]. static const bytesized = PartB.bytesized; + + /// See [PartB.bytesizedTextTheme]. static const bytesizedTextTheme = PartB.bytesizedTextTheme; + + /// See [PartC.cabin]. static const cabin = PartC.cabin; + + /// See [PartC.cabinTextTheme]. static const cabinTextTheme = PartC.cabinTextTheme; + + /// See [PartC.cabinSketch]. static const cabinSketch = PartC.cabinSketch; + + /// See [PartC.cabinSketchTextTheme]. static const cabinSketchTextTheme = PartC.cabinSketchTextTheme; + + /// See [PartC.cactusClassicalSerif]. static const cactusClassicalSerif = PartC.cactusClassicalSerif; + + /// See [PartC.cactusClassicalSerifTextTheme]. static const cactusClassicalSerifTextTheme = PartC.cactusClassicalSerifTextTheme; + + /// See [PartC.caesarDressing]. static const caesarDressing = PartC.caesarDressing; + + /// See [PartC.caesarDressingTextTheme]. static const caesarDressingTextTheme = PartC.caesarDressingTextTheme; + + /// See [PartC.cagliostro]. static const cagliostro = PartC.cagliostro; + + /// See [PartC.cagliostroTextTheme]. static const cagliostroTextTheme = PartC.cagliostroTextTheme; + + /// See [PartC.cairo]. static const cairo = PartC.cairo; + + /// See [PartC.cairoTextTheme]. static const cairoTextTheme = PartC.cairoTextTheme; + + /// See [PartC.cairoPlay]. static const cairoPlay = PartC.cairoPlay; + + /// See [PartC.cairoPlayTextTheme]. static const cairoPlayTextTheme = PartC.cairoPlayTextTheme; + + /// See [PartC.calSans]. static const calSans = PartC.calSans; + + /// See [PartC.calSansTextTheme]. static const calSansTextTheme = PartC.calSansTextTheme; + + /// See [PartC.caladea]. static const caladea = PartC.caladea; + + /// See [PartC.caladeaTextTheme]. static const caladeaTextTheme = PartC.caladeaTextTheme; + + /// See [PartC.calistoga]. static const calistoga = PartC.calistoga; + + /// See [PartC.calistogaTextTheme]. static const calistogaTextTheme = PartC.calistogaTextTheme; + + /// See [PartC.calligraffitti]. static const calligraffitti = PartC.calligraffitti; + + /// See [PartC.calligraffittiTextTheme]. static const calligraffittiTextTheme = PartC.calligraffittiTextTheme; + + /// See [PartC.cambay]. static const cambay = PartC.cambay; + + /// See [PartC.cambayTextTheme]. static const cambayTextTheme = PartC.cambayTextTheme; + + /// See [PartC.cambo]. static const cambo = PartC.cambo; + + /// See [PartC.camboTextTheme]. static const camboTextTheme = PartC.camboTextTheme; + + /// See [PartC.candal]. static const candal = PartC.candal; + + /// See [PartC.candalTextTheme]. static const candalTextTheme = PartC.candalTextTheme; + + /// See [PartC.cantarell]. static const cantarell = PartC.cantarell; + + /// See [PartC.cantarellTextTheme]. static const cantarellTextTheme = PartC.cantarellTextTheme; + + /// See [PartC.cantataOne]. static const cantataOne = PartC.cantataOne; + + /// See [PartC.cantataOneTextTheme]. static const cantataOneTextTheme = PartC.cantataOneTextTheme; + + /// See [PartC.cantoraOne]. static const cantoraOne = PartC.cantoraOne; + + /// See [PartC.cantoraOneTextTheme]. static const cantoraOneTextTheme = PartC.cantoraOneTextTheme; + + /// See [PartC.caprasimo]. static const caprasimo = PartC.caprasimo; + + /// See [PartC.caprasimoTextTheme]. static const caprasimoTextTheme = PartC.caprasimoTextTheme; + + /// See [PartC.capriola]. static const capriola = PartC.capriola; + + /// See [PartC.capriolaTextTheme]. static const capriolaTextTheme = PartC.capriolaTextTheme; + + /// See [PartC.caramel]. static const caramel = PartC.caramel; + + /// See [PartC.caramelTextTheme]. static const caramelTextTheme = PartC.caramelTextTheme; + + /// See [PartC.carattere]. static const carattere = PartC.carattere; + + /// See [PartC.carattereTextTheme]. static const carattereTextTheme = PartC.carattereTextTheme; + + /// See [PartC.cardo]. static const cardo = PartC.cardo; + + /// See [PartC.cardoTextTheme]. static const cardoTextTheme = PartC.cardoTextTheme; + + /// See [PartC.carlito]. static const carlito = PartC.carlito; + + /// See [PartC.carlitoTextTheme]. static const carlitoTextTheme = PartC.carlitoTextTheme; + + /// See [PartC.carme]. static const carme = PartC.carme; + + /// See [PartC.carmeTextTheme]. static const carmeTextTheme = PartC.carmeTextTheme; + + /// See [PartC.carroisGothic]. static const carroisGothic = PartC.carroisGothic; + + /// See [PartC.carroisGothicTextTheme]. static const carroisGothicTextTheme = PartC.carroisGothicTextTheme; + + /// See [PartC.carroisGothicSc]. static const carroisGothicSc = PartC.carroisGothicSc; + + /// See [PartC.carroisGothicScTextTheme]. static const carroisGothicScTextTheme = PartC.carroisGothicScTextTheme; + + /// See [PartC.carterOne]. static const carterOne = PartC.carterOne; + + /// See [PartC.carterOneTextTheme]. static const carterOneTextTheme = PartC.carterOneTextTheme; + + /// See [PartC.cascadiaCode]. static const cascadiaCode = PartC.cascadiaCode; + + /// See [PartC.cascadiaCodeTextTheme]. static const cascadiaCodeTextTheme = PartC.cascadiaCodeTextTheme; + + /// See [PartC.cascadiaMono]. static const cascadiaMono = PartC.cascadiaMono; + + /// See [PartC.cascadiaMonoTextTheme]. static const cascadiaMonoTextTheme = PartC.cascadiaMonoTextTheme; + + /// See [PartC.castoro]. static const castoro = PartC.castoro; + + /// See [PartC.castoroTextTheme]. static const castoroTextTheme = PartC.castoroTextTheme; + + /// See [PartC.castoroTitling]. static const castoroTitling = PartC.castoroTitling; + + /// See [PartC.castoroTitlingTextTheme]. static const castoroTitlingTextTheme = PartC.castoroTitlingTextTheme; + + /// See [PartC.catamaran]. static const catamaran = PartC.catamaran; + + /// See [PartC.catamaranTextTheme]. static const catamaranTextTheme = PartC.catamaranTextTheme; + + /// See [PartC.caudex]. static const caudex = PartC.caudex; + + /// See [PartC.caudexTextTheme]. static const caudexTextTheme = PartC.caudexTextTheme; + + /// See [PartC.caveat]. static const caveat = PartC.caveat; + + /// See [PartC.caveatTextTheme]. static const caveatTextTheme = PartC.caveatTextTheme; + + /// See [PartC.caveatBrush]. static const caveatBrush = PartC.caveatBrush; + + /// See [PartC.caveatBrushTextTheme]. static const caveatBrushTextTheme = PartC.caveatBrushTextTheme; + + /// See [PartC.cedarvilleCursive]. static const cedarvilleCursive = PartC.cedarvilleCursive; + + /// See [PartC.cedarvilleCursiveTextTheme]. static const cedarvilleCursiveTextTheme = PartC.cedarvilleCursiveTextTheme; + + /// See [PartC.cevicheOne]. static const cevicheOne = PartC.cevicheOne; + + /// See [PartC.cevicheOneTextTheme]. static const cevicheOneTextTheme = PartC.cevicheOneTextTheme; + + /// See [PartC.chakraPetch]. static const chakraPetch = PartC.chakraPetch; + + /// See [PartC.chakraPetchTextTheme]. static const chakraPetchTextTheme = PartC.chakraPetchTextTheme; + + /// See [PartC.changa]. static const changa = PartC.changa; + + /// See [PartC.changaTextTheme]. static const changaTextTheme = PartC.changaTextTheme; + + /// See [PartC.changaOne]. static const changaOne = PartC.changaOne; + + /// See [PartC.changaOneTextTheme]. static const changaOneTextTheme = PartC.changaOneTextTheme; + + /// See [PartC.chango]. static const chango = PartC.chango; + + /// See [PartC.changoTextTheme]. static const changoTextTheme = PartC.changoTextTheme; + + /// See [PartC.charisSil]. static const charisSil = PartC.charisSil; + + /// See [PartC.charisSilTextTheme]. static const charisSilTextTheme = PartC.charisSilTextTheme; + + /// See [PartC.charm]. static const charm = PartC.charm; + + /// See [PartC.charmTextTheme]. static const charmTextTheme = PartC.charmTextTheme; + + /// See [PartC.charmonman]. static const charmonman = PartC.charmonman; + + /// See [PartC.charmonmanTextTheme]. static const charmonmanTextTheme = PartC.charmonmanTextTheme; + + /// See [PartC.chathura]. static const chathura = PartC.chathura; + + /// See [PartC.chathuraTextTheme]. static const chathuraTextTheme = PartC.chathuraTextTheme; + + /// See [PartC.chauPhilomeneOne]. static const chauPhilomeneOne = PartC.chauPhilomeneOne; + + /// See [PartC.chauPhilomeneOneTextTheme]. static const chauPhilomeneOneTextTheme = PartC.chauPhilomeneOneTextTheme; + + /// See [PartC.chelaOne]. static const chelaOne = PartC.chelaOne; + + /// See [PartC.chelaOneTextTheme]. static const chelaOneTextTheme = PartC.chelaOneTextTheme; + + /// See [PartC.chelseaMarket]. static const chelseaMarket = PartC.chelseaMarket; + + /// See [PartC.chelseaMarketTextTheme]. static const chelseaMarketTextTheme = PartC.chelseaMarketTextTheme; + + /// See [PartC.chenla]. static const chenla = PartC.chenla; + + /// See [PartC.chenlaTextTheme]. static const chenlaTextTheme = PartC.chenlaTextTheme; + + /// See [PartC.cherish]. static const cherish = PartC.cherish; + + /// See [PartC.cherishTextTheme]. static const cherishTextTheme = PartC.cherishTextTheme; + + /// See [PartC.cherryBombOne]. static const cherryBombOne = PartC.cherryBombOne; + + /// See [PartC.cherryBombOneTextTheme]. static const cherryBombOneTextTheme = PartC.cherryBombOneTextTheme; + + /// See [PartC.cherryCreamSoda]. static const cherryCreamSoda = PartC.cherryCreamSoda; + + /// See [PartC.cherryCreamSodaTextTheme]. static const cherryCreamSodaTextTheme = PartC.cherryCreamSodaTextTheme; + + /// See [PartC.cherrySwash]. static const cherrySwash = PartC.cherrySwash; + + /// See [PartC.cherrySwashTextTheme]. static const cherrySwashTextTheme = PartC.cherrySwashTextTheme; + + /// See [PartC.chewy]. static const chewy = PartC.chewy; + + /// See [PartC.chewyTextTheme]. static const chewyTextTheme = PartC.chewyTextTheme; + + /// See [PartC.chicle]. static const chicle = PartC.chicle; + + /// See [PartC.chicleTextTheme]. static const chicleTextTheme = PartC.chicleTextTheme; + + /// See [PartC.chilanka]. static const chilanka = PartC.chilanka; + + /// See [PartC.chilankaTextTheme]. static const chilankaTextTheme = PartC.chilankaTextTheme; + + /// See [PartC.chironGoRoundTc]. static const chironGoRoundTc = PartC.chironGoRoundTc; + + /// See [PartC.chironGoRoundTcTextTheme]. static const chironGoRoundTcTextTheme = PartC.chironGoRoundTcTextTheme; + + /// See [PartC.chironHeiHk]. static const chironHeiHk = PartC.chironHeiHk; + + /// See [PartC.chironHeiHkTextTheme]. static const chironHeiHkTextTheme = PartC.chironHeiHkTextTheme; + + /// See [PartC.chironSungHk]. static const chironSungHk = PartC.chironSungHk; + + /// See [PartC.chironSungHkTextTheme]. static const chironSungHkTextTheme = PartC.chironSungHkTextTheme; + + /// See [PartC.chivo]. static const chivo = PartC.chivo; + + /// See [PartC.chivoTextTheme]. static const chivoTextTheme = PartC.chivoTextTheme; + + /// See [PartC.chivoMono]. static const chivoMono = PartC.chivoMono; + + /// See [PartC.chivoMonoTextTheme]. static const chivoMonoTextTheme = PartC.chivoMonoTextTheme; + + /// See [PartC.chocolateClassicalSans]. static const chocolateClassicalSans = PartC.chocolateClassicalSans; + + /// See [PartC.chocolateClassicalSansTextTheme]. static const chocolateClassicalSansTextTheme = PartC.chocolateClassicalSansTextTheme; + + /// See [PartC.chokokutai]. static const chokokutai = PartC.chokokutai; + + /// See [PartC.chokokutaiTextTheme]. static const chokokutaiTextTheme = PartC.chokokutaiTextTheme; + + /// See [PartC.chonburi]. static const chonburi = PartC.chonburi; + + /// See [PartC.chonburiTextTheme]. static const chonburiTextTheme = PartC.chonburiTextTheme; + + /// See [PartC.cinzel]. static const cinzel = PartC.cinzel; + + /// See [PartC.cinzelTextTheme]. static const cinzelTextTheme = PartC.cinzelTextTheme; + + /// See [PartC.cinzelDecorative]. static const cinzelDecorative = PartC.cinzelDecorative; + + /// See [PartC.cinzelDecorativeTextTheme]. static const cinzelDecorativeTextTheme = PartC.cinzelDecorativeTextTheme; + + /// See [PartC.clickerScript]. static const clickerScript = PartC.clickerScript; + + /// See [PartC.clickerScriptTextTheme]. static const clickerScriptTextTheme = PartC.clickerScriptTextTheme; + + /// See [PartC.climateCrisis]. static const climateCrisis = PartC.climateCrisis; + + /// See [PartC.climateCrisisTextTheme]. static const climateCrisisTextTheme = PartC.climateCrisisTextTheme; + + /// See [PartC.coda]. static const coda = PartC.coda; + + /// See [PartC.codaTextTheme]. static const codaTextTheme = PartC.codaTextTheme; + + /// See [PartC.codystar]. static const codystar = PartC.codystar; + + /// See [PartC.codystarTextTheme]. static const codystarTextTheme = PartC.codystarTextTheme; + + /// See [PartC.coiny]. static const coiny = PartC.coiny; + + /// See [PartC.coinyTextTheme]. static const coinyTextTheme = PartC.coinyTextTheme; + + /// See [PartC.combo]. static const combo = PartC.combo; + + /// See [PartC.comboTextTheme]. static const comboTextTheme = PartC.comboTextTheme; + + /// See [PartC.comfortaa]. static const comfortaa = PartC.comfortaa; + + /// See [PartC.comfortaaTextTheme]. static const comfortaaTextTheme = PartC.comfortaaTextTheme; + + /// See [PartC.comforter]. static const comforter = PartC.comforter; + + /// See [PartC.comforterTextTheme]. static const comforterTextTheme = PartC.comforterTextTheme; + + /// See [PartC.comforterBrush]. static const comforterBrush = PartC.comforterBrush; + + /// See [PartC.comforterBrushTextTheme]. static const comforterBrushTextTheme = PartC.comforterBrushTextTheme; + + /// See [PartC.comicNeue]. static const comicNeue = PartC.comicNeue; + + /// See [PartC.comicNeueTextTheme]. static const comicNeueTextTheme = PartC.comicNeueTextTheme; + + /// See [PartC.comicRelief]. static const comicRelief = PartC.comicRelief; + + /// See [PartC.comicReliefTextTheme]. static const comicReliefTextTheme = PartC.comicReliefTextTheme; + + /// See [PartC.comingSoon]. static const comingSoon = PartC.comingSoon; + + /// See [PartC.comingSoonTextTheme]. static const comingSoonTextTheme = PartC.comingSoonTextTheme; + + /// See [PartC.comme]. static const comme = PartC.comme; + + /// See [PartC.commeTextTheme]. static const commeTextTheme = PartC.commeTextTheme; + + /// See [PartC.commissioner]. static const commissioner = PartC.commissioner; + + /// See [PartC.commissionerTextTheme]. static const commissionerTextTheme = PartC.commissionerTextTheme; + + /// See [PartC.concertOne]. static const concertOne = PartC.concertOne; + + /// See [PartC.concertOneTextTheme]. static const concertOneTextTheme = PartC.concertOneTextTheme; + + /// See [PartC.condiment]. static const condiment = PartC.condiment; + + /// See [PartC.condimentTextTheme]. static const condimentTextTheme = PartC.condimentTextTheme; + + /// See [PartC.content]. static const content = PartC.content; + + /// See [PartC.contentTextTheme]. static const contentTextTheme = PartC.contentTextTheme; + + /// See [PartC.contrailOne]. static const contrailOne = PartC.contrailOne; + + /// See [PartC.contrailOneTextTheme]. static const contrailOneTextTheme = PartC.contrailOneTextTheme; + + /// See [PartC.convergence]. static const convergence = PartC.convergence; + + /// See [PartC.convergenceTextTheme]. static const convergenceTextTheme = PartC.convergenceTextTheme; + + /// See [PartC.cookie]. static const cookie = PartC.cookie; + + /// See [PartC.cookieTextTheme]. static const cookieTextTheme = PartC.cookieTextTheme; + + /// See [PartC.copse]. static const copse = PartC.copse; + + /// See [PartC.copseTextTheme]. static const copseTextTheme = PartC.copseTextTheme; + + /// See [PartC.coralPixels]. static const coralPixels = PartC.coralPixels; + + /// See [PartC.coralPixelsTextTheme]. static const coralPixelsTextTheme = PartC.coralPixelsTextTheme; + + /// See [PartC.corben]. static const corben = PartC.corben; + + /// See [PartC.corbenTextTheme]. static const corbenTextTheme = PartC.corbenTextTheme; + + /// See [PartC.corinthia]. static const corinthia = PartC.corinthia; + + /// See [PartC.corinthiaTextTheme]. static const corinthiaTextTheme = PartC.corinthiaTextTheme; + + /// See [PartC.cormorant]. static const cormorant = PartC.cormorant; + + /// See [PartC.cormorantTextTheme]. static const cormorantTextTheme = PartC.cormorantTextTheme; + + /// See [PartC.cormorantGaramond]. static const cormorantGaramond = PartC.cormorantGaramond; + + /// See [PartC.cormorantGaramondTextTheme]. static const cormorantGaramondTextTheme = PartC.cormorantGaramondTextTheme; + + /// See [PartC.cormorantInfant]. static const cormorantInfant = PartC.cormorantInfant; + + /// See [PartC.cormorantInfantTextTheme]. static const cormorantInfantTextTheme = PartC.cormorantInfantTextTheme; + + /// See [PartC.cormorantSc]. static const cormorantSc = PartC.cormorantSc; + + /// See [PartC.cormorantScTextTheme]. static const cormorantScTextTheme = PartC.cormorantScTextTheme; + + /// See [PartC.cormorantUnicase]. static const cormorantUnicase = PartC.cormorantUnicase; + + /// See [PartC.cormorantUnicaseTextTheme]. static const cormorantUnicaseTextTheme = PartC.cormorantUnicaseTextTheme; + + /// See [PartC.cormorantUpright]. static const cormorantUpright = PartC.cormorantUpright; + + /// See [PartC.cormorantUprightTextTheme]. static const cormorantUprightTextTheme = PartC.cormorantUprightTextTheme; + + /// See [PartC.cossetteTexte]. static const cossetteTexte = PartC.cossetteTexte; + + /// See [PartC.cossetteTexteTextTheme]. static const cossetteTexteTextTheme = PartC.cossetteTexteTextTheme; + + /// See [PartC.cossetteTitre]. static const cossetteTitre = PartC.cossetteTitre; + + /// See [PartC.cossetteTitreTextTheme]. static const cossetteTitreTextTheme = PartC.cossetteTitreTextTheme; + + /// See [PartC.courgette]. static const courgette = PartC.courgette; + + /// See [PartC.courgetteTextTheme]. static const courgetteTextTheme = PartC.courgetteTextTheme; + + /// See [PartC.courierPrime]. static const courierPrime = PartC.courierPrime; + + /// See [PartC.courierPrimeTextTheme]. static const courierPrimeTextTheme = PartC.courierPrimeTextTheme; + + /// See [PartC.cousine]. static const cousine = PartC.cousine; + + /// See [PartC.cousineTextTheme]. static const cousineTextTheme = PartC.cousineTextTheme; + + /// See [PartC.coustard]. static const coustard = PartC.coustard; + + /// See [PartC.coustardTextTheme]. static const coustardTextTheme = PartC.coustardTextTheme; + + /// See [PartC.coveredByYourGrace]. static const coveredByYourGrace = PartC.coveredByYourGrace; + + /// See [PartC.coveredByYourGraceTextTheme]. static const coveredByYourGraceTextTheme = PartC.coveredByYourGraceTextTheme; + + /// See [PartC.craftyGirls]. static const craftyGirls = PartC.craftyGirls; + + /// See [PartC.craftyGirlsTextTheme]. static const craftyGirlsTextTheme = PartC.craftyGirlsTextTheme; + + /// See [PartC.creepster]. static const creepster = PartC.creepster; + + /// See [PartC.creepsterTextTheme]. static const creepsterTextTheme = PartC.creepsterTextTheme; + + /// See [PartC.creteRound]. static const creteRound = PartC.creteRound; + + /// See [PartC.creteRoundTextTheme]. static const creteRoundTextTheme = PartC.creteRoundTextTheme; + + /// See [PartC.crimsonPro]. static const crimsonPro = PartC.crimsonPro; + + /// See [PartC.crimsonProTextTheme]. static const crimsonProTextTheme = PartC.crimsonProTextTheme; + + /// See [PartC.crimsonText]. static const crimsonText = PartC.crimsonText; + + /// See [PartC.crimsonTextTextTheme]. static const crimsonTextTextTheme = PartC.crimsonTextTextTheme; + + /// See [PartC.croissantOne]. static const croissantOne = PartC.croissantOne; + + /// See [PartC.croissantOneTextTheme]. static const croissantOneTextTheme = PartC.croissantOneTextTheme; + + /// See [PartC.crushed]. static const crushed = PartC.crushed; + + /// See [PartC.crushedTextTheme]. static const crushedTextTheme = PartC.crushedTextTheme; + + /// See [PartC.cuprum]. static const cuprum = PartC.cuprum; + + /// See [PartC.cuprumTextTheme]. static const cuprumTextTheme = PartC.cuprumTextTheme; + + /// See [PartC.cuteFont]. static const cuteFont = PartC.cuteFont; + + /// See [PartC.cuteFontTextTheme]. static const cuteFontTextTheme = PartC.cuteFontTextTheme; + + /// See [PartC.cutive]. static const cutive = PartC.cutive; + + /// See [PartC.cutiveTextTheme]. static const cutiveTextTheme = PartC.cutiveTextTheme; + + /// See [PartC.cutiveMono]. static const cutiveMono = PartC.cutiveMono; + + /// See [PartC.cutiveMonoTextTheme]. static const cutiveMonoTextTheme = PartC.cutiveMonoTextTheme; + + /// See [PartD.dmMono]. static const dmMono = PartD.dmMono; + + /// See [PartD.dmMonoTextTheme]. static const dmMonoTextTheme = PartD.dmMonoTextTheme; + + /// See [PartD.dmSans]. static const dmSans = PartD.dmSans; + + /// See [PartD.dmSansTextTheme]. static const dmSansTextTheme = PartD.dmSansTextTheme; + + /// See [PartD.dmSerifDisplay]. static const dmSerifDisplay = PartD.dmSerifDisplay; + + /// See [PartD.dmSerifDisplayTextTheme]. static const dmSerifDisplayTextTheme = PartD.dmSerifDisplayTextTheme; + + /// See [PartD.dmSerifText]. static const dmSerifText = PartD.dmSerifText; + + /// See [PartD.dmSerifTextTextTheme]. static const dmSerifTextTextTheme = PartD.dmSerifTextTextTheme; + + /// See [PartD.daiBannaSil]. static const daiBannaSil = PartD.daiBannaSil; + + /// See [PartD.daiBannaSilTextTheme]. static const daiBannaSilTextTheme = PartD.daiBannaSilTextTheme; + + /// See [PartD.damion]. static const damion = PartD.damion; + + /// See [PartD.damionTextTheme]. static const damionTextTheme = PartD.damionTextTheme; + + /// See [PartD.dancingScript]. static const dancingScript = PartD.dancingScript; + + /// See [PartD.dancingScriptTextTheme]. static const dancingScriptTextTheme = PartD.dancingScriptTextTheme; + + /// See [PartD.danfo]. static const danfo = PartD.danfo; + + /// See [PartD.danfoTextTheme]. static const danfoTextTheme = PartD.danfoTextTheme; + + /// See [PartD.dangrek]. static const dangrek = PartD.dangrek; + + /// See [PartD.dangrekTextTheme]. static const dangrekTextTheme = PartD.dangrekTextTheme; + + /// See [PartD.darkerGrotesque]. static const darkerGrotesque = PartD.darkerGrotesque; + + /// See [PartD.darkerGrotesqueTextTheme]. static const darkerGrotesqueTextTheme = PartD.darkerGrotesqueTextTheme; + + /// See [PartD.darumadropOne]. static const darumadropOne = PartD.darumadropOne; + + /// See [PartD.darumadropOneTextTheme]. static const darumadropOneTextTheme = PartD.darumadropOneTextTheme; + + /// See [PartD.davidLibre]. static const davidLibre = PartD.davidLibre; + + /// See [PartD.davidLibreTextTheme]. static const davidLibreTextTheme = PartD.davidLibreTextTheme; + + /// See [PartD.dawningOfANewDay]. static const dawningOfANewDay = PartD.dawningOfANewDay; + + /// See [PartD.dawningOfANewDayTextTheme]. static const dawningOfANewDayTextTheme = PartD.dawningOfANewDayTextTheme; + + /// See [PartD.daysOne]. static const daysOne = PartD.daysOne; + + /// See [PartD.daysOneTextTheme]. static const daysOneTextTheme = PartD.daysOneTextTheme; + + /// See [PartD.dekko]. static const dekko = PartD.dekko; + + /// See [PartD.dekkoTextTheme]. static const dekkoTextTheme = PartD.dekkoTextTheme; + + /// See [PartD.delaGothicOne]. static const delaGothicOne = PartD.delaGothicOne; + + /// See [PartD.delaGothicOneTextTheme]. static const delaGothicOneTextTheme = PartD.delaGothicOneTextTheme; + + /// See [PartD.deliciousHandrawn]. static const deliciousHandrawn = PartD.deliciousHandrawn; + + /// See [PartD.deliciousHandrawnTextTheme]. static const deliciousHandrawnTextTheme = PartD.deliciousHandrawnTextTheme; + + /// See [PartD.delius]. static const delius = PartD.delius; + + /// See [PartD.deliusTextTheme]. static const deliusTextTheme = PartD.deliusTextTheme; + + /// See [PartD.deliusSwashCaps]. static const deliusSwashCaps = PartD.deliusSwashCaps; + + /// See [PartD.deliusSwashCapsTextTheme]. static const deliusSwashCapsTextTheme = PartD.deliusSwashCapsTextTheme; + + /// See [PartD.deliusUnicase]. static const deliusUnicase = PartD.deliusUnicase; + + /// See [PartD.deliusUnicaseTextTheme]. static const deliusUnicaseTextTheme = PartD.deliusUnicaseTextTheme; + + /// See [PartD.dellaRespira]. static const dellaRespira = PartD.dellaRespira; + + /// See [PartD.dellaRespiraTextTheme]. static const dellaRespiraTextTheme = PartD.dellaRespiraTextTheme; + + /// See [PartD.denkOne]. static const denkOne = PartD.denkOne; + + /// See [PartD.denkOneTextTheme]. static const denkOneTextTheme = PartD.denkOneTextTheme; + + /// See [PartD.devonshire]. static const devonshire = PartD.devonshire; + + /// See [PartD.devonshireTextTheme]. static const devonshireTextTheme = PartD.devonshireTextTheme; + + /// See [PartD.dhurjati]. static const dhurjati = PartD.dhurjati; + + /// See [PartD.dhurjatiTextTheme]. static const dhurjatiTextTheme = PartD.dhurjatiTextTheme; + + /// See [PartD.didactGothic]. static const didactGothic = PartD.didactGothic; + + /// See [PartD.didactGothicTextTheme]. static const didactGothicTextTheme = PartD.didactGothicTextTheme; + + /// See [PartD.diphylleia]. static const diphylleia = PartD.diphylleia; + + /// See [PartD.diphylleiaTextTheme]. static const diphylleiaTextTheme = PartD.diphylleiaTextTheme; + + /// See [PartD.diplomata]. static const diplomata = PartD.diplomata; + + /// See [PartD.diplomataTextTheme]. static const diplomataTextTheme = PartD.diplomataTextTheme; + + /// See [PartD.diplomataSc]. static const diplomataSc = PartD.diplomataSc; + + /// See [PartD.diplomataScTextTheme]. static const diplomataScTextTheme = PartD.diplomataScTextTheme; + + /// See [PartD.doHyeon]. static const doHyeon = PartD.doHyeon; + + /// See [PartD.doHyeonTextTheme]. static const doHyeonTextTheme = PartD.doHyeonTextTheme; + + /// See [PartD.dokdo]. static const dokdo = PartD.dokdo; + + /// See [PartD.dokdoTextTheme]. static const dokdoTextTheme = PartD.dokdoTextTheme; + + /// See [PartD.domine]. static const domine = PartD.domine; + + /// See [PartD.domineTextTheme]. static const domineTextTheme = PartD.domineTextTheme; + + /// See [PartD.donegalOne]. static const donegalOne = PartD.donegalOne; + + /// See [PartD.donegalOneTextTheme]. static const donegalOneTextTheme = PartD.donegalOneTextTheme; + + /// See [PartD.dongle]. static const dongle = PartD.dongle; + + /// See [PartD.dongleTextTheme]. static const dongleTextTheme = PartD.dongleTextTheme; + + /// See [PartD.doppioOne]. static const doppioOne = PartD.doppioOne; + + /// See [PartD.doppioOneTextTheme]. static const doppioOneTextTheme = PartD.doppioOneTextTheme; + + /// See [PartD.dorsa]. static const dorsa = PartD.dorsa; + + /// See [PartD.dorsaTextTheme]. static const dorsaTextTheme = PartD.dorsaTextTheme; + + /// See [PartD.dosis]. static const dosis = PartD.dosis; + + /// See [PartD.dosisTextTheme]. static const dosisTextTheme = PartD.dosisTextTheme; + + /// See [PartD.dotGothic16]. static const dotGothic16 = PartD.dotGothic16; + + /// See [PartD.dotGothic16TextTheme]. static const dotGothic16TextTheme = PartD.dotGothic16TextTheme; + + /// See [PartD.doto]. static const doto = PartD.doto; + + /// See [PartD.dotoTextTheme]. static const dotoTextTheme = PartD.dotoTextTheme; + + /// See [PartD.drSugiyama]. static const drSugiyama = PartD.drSugiyama; + + /// See [PartD.drSugiyamaTextTheme]. static const drSugiyamaTextTheme = PartD.drSugiyamaTextTheme; + + /// See [PartD.duruSans]. static const duruSans = PartD.duruSans; + + /// See [PartD.duruSansTextTheme]. static const duruSansTextTheme = PartD.duruSansTextTheme; + + /// See [PartD.dynaPuff]. static const dynaPuff = PartD.dynaPuff; + + /// See [PartD.dynaPuffTextTheme]. static const dynaPuffTextTheme = PartD.dynaPuffTextTheme; + + /// See [PartD.dynalight]. static const dynalight = PartD.dynalight; + + /// See [PartD.dynalightTextTheme]. static const dynalightTextTheme = PartD.dynalightTextTheme; + + /// See [PartE.ebGaramond]. static const ebGaramond = PartE.ebGaramond; + + /// See [PartE.ebGaramondTextTheme]. static const ebGaramondTextTheme = PartE.ebGaramondTextTheme; + + /// See [PartE.eagleLake]. static const eagleLake = PartE.eagleLake; + + /// See [PartE.eagleLakeTextTheme]. static const eagleLakeTextTheme = PartE.eagleLakeTextTheme; + + /// See [PartE.eastSeaDokdo]. static const eastSeaDokdo = PartE.eastSeaDokdo; + + /// See [PartE.eastSeaDokdoTextTheme]. static const eastSeaDokdoTextTheme = PartE.eastSeaDokdoTextTheme; + + /// See [PartE.eater]. static const eater = PartE.eater; + + /// See [PartE.eaterTextTheme]. static const eaterTextTheme = PartE.eaterTextTheme; + + /// See [PartE.economica]. static const economica = PartE.economica; + + /// See [PartE.economicaTextTheme]. static const economicaTextTheme = PartE.economicaTextTheme; + + /// See [PartE.eczar]. static const eczar = PartE.eczar; + + /// See [PartE.eczarTextTheme]. static const eczarTextTheme = PartE.eczarTextTheme; + + /// See [PartE.eduAuVicWaNtArrows]. static const eduAuVicWaNtArrows = PartE.eduAuVicWaNtArrows; + + /// See [PartE.eduAuVicWaNtArrowsTextTheme]. static const eduAuVicWaNtArrowsTextTheme = PartE.eduAuVicWaNtArrowsTextTheme; + + /// See [PartE.eduAuVicWaNtDots]. static const eduAuVicWaNtDots = PartE.eduAuVicWaNtDots; + + /// See [PartE.eduAuVicWaNtDotsTextTheme]. static const eduAuVicWaNtDotsTextTheme = PartE.eduAuVicWaNtDotsTextTheme; + + /// See [PartE.eduAuVicWaNtGuides]. static const eduAuVicWaNtGuides = PartE.eduAuVicWaNtGuides; + + /// See [PartE.eduAuVicWaNtGuidesTextTheme]. static const eduAuVicWaNtGuidesTextTheme = PartE.eduAuVicWaNtGuidesTextTheme; + + /// See [PartE.eduAuVicWaNtHand]. static const eduAuVicWaNtHand = PartE.eduAuVicWaNtHand; + + /// See [PartE.eduAuVicWaNtHandTextTheme]. static const eduAuVicWaNtHandTextTheme = PartE.eduAuVicWaNtHandTextTheme; + + /// See [PartE.eduAuVicWaNtPre]. static const eduAuVicWaNtPre = PartE.eduAuVicWaNtPre; + + /// See [PartE.eduAuVicWaNtPreTextTheme]. static const eduAuVicWaNtPreTextTheme = PartE.eduAuVicWaNtPreTextTheme; + + /// See [PartE.eduNswActCursive]. static const eduNswActCursive = PartE.eduNswActCursive; + + /// See [PartE.eduNswActCursiveTextTheme]. static const eduNswActCursiveTextTheme = PartE.eduNswActCursiveTextTheme; + + /// See [PartE.eduNswActFoundation]. static const eduNswActFoundation = PartE.eduNswActFoundation; + + /// See [PartE.eduNswActFoundationTextTheme]. static const eduNswActFoundationTextTheme = PartE.eduNswActFoundationTextTheme; + + /// See [PartE.eduNswActHandPre]. static const eduNswActHandPre = PartE.eduNswActHandPre; + + /// See [PartE.eduNswActHandPreTextTheme]. static const eduNswActHandPreTextTheme = PartE.eduNswActHandPreTextTheme; + + /// See [PartE.eduQldBeginner]. static const eduQldBeginner = PartE.eduQldBeginner; + + /// See [PartE.eduQldBeginnerTextTheme]. static const eduQldBeginnerTextTheme = PartE.eduQldBeginnerTextTheme; + + /// See [PartE.eduQldHand]. static const eduQldHand = PartE.eduQldHand; + + /// See [PartE.eduQldHandTextTheme]. static const eduQldHandTextTheme = PartE.eduQldHandTextTheme; + + /// See [PartE.eduSaBeginner]. static const eduSaBeginner = PartE.eduSaBeginner; + + /// See [PartE.eduSaBeginnerTextTheme]. static const eduSaBeginnerTextTheme = PartE.eduSaBeginnerTextTheme; + + /// See [PartE.eduSaHand]. static const eduSaHand = PartE.eduSaHand; + + /// See [PartE.eduSaHandTextTheme]. static const eduSaHandTextTheme = PartE.eduSaHandTextTheme; + + /// See [PartE.eduTasBeginner]. static const eduTasBeginner = PartE.eduTasBeginner; + + /// See [PartE.eduTasBeginnerTextTheme]. static const eduTasBeginnerTextTheme = PartE.eduTasBeginnerTextTheme; + + /// See [PartE.eduVicWaNtBeginner]. static const eduVicWaNtBeginner = PartE.eduVicWaNtBeginner; + + /// See [PartE.eduVicWaNtBeginnerTextTheme]. static const eduVicWaNtBeginnerTextTheme = PartE.eduVicWaNtBeginnerTextTheme; + + /// See [PartE.eduVicWaNtHand]. static const eduVicWaNtHand = PartE.eduVicWaNtHand; + + /// See [PartE.eduVicWaNtHandTextTheme]. static const eduVicWaNtHandTextTheme = PartE.eduVicWaNtHandTextTheme; + + /// See [PartE.eduVicWaNtHandPre]. static const eduVicWaNtHandPre = PartE.eduVicWaNtHandPre; + + /// See [PartE.eduVicWaNtHandPreTextTheme]. static const eduVicWaNtHandPreTextTheme = PartE.eduVicWaNtHandPreTextTheme; + + /// See [PartE.elMessiri]. static const elMessiri = PartE.elMessiri; + + /// See [PartE.elMessiriTextTheme]. static const elMessiriTextTheme = PartE.elMessiriTextTheme; + + /// See [PartE.electrolize]. static const electrolize = PartE.electrolize; + + /// See [PartE.electrolizeTextTheme]. static const electrolizeTextTheme = PartE.electrolizeTextTheme; + + /// See [PartE.elsie]. static const elsie = PartE.elsie; + + /// See [PartE.elsieTextTheme]. static const elsieTextTheme = PartE.elsieTextTheme; + + /// See [PartE.elsieSwashCaps]. static const elsieSwashCaps = PartE.elsieSwashCaps; + + /// See [PartE.elsieSwashCapsTextTheme]. static const elsieSwashCapsTextTheme = PartE.elsieSwashCapsTextTheme; + + /// See [PartE.emblemaOne]. static const emblemaOne = PartE.emblemaOne; + + /// See [PartE.emblemaOneTextTheme]. static const emblemaOneTextTheme = PartE.emblemaOneTextTheme; + + /// See [PartE.emilysCandy]. static const emilysCandy = PartE.emilysCandy; + + /// See [PartE.emilysCandyTextTheme]. static const emilysCandyTextTheme = PartE.emilysCandyTextTheme; + + /// See [PartE.encodeSans]. static const encodeSans = PartE.encodeSans; + + /// See [PartE.encodeSansTextTheme]. static const encodeSansTextTheme = PartE.encodeSansTextTheme; + + /// See [PartE.encodeSansSc]. static const encodeSansSc = PartE.encodeSansSc; + + /// See [PartE.encodeSansScTextTheme]. static const encodeSansScTextTheme = PartE.encodeSansScTextTheme; + + /// See [PartE.engagement]. static const engagement = PartE.engagement; + + /// See [PartE.engagementTextTheme]. static const engagementTextTheme = PartE.engagementTextTheme; + + /// See [PartE.englebert]. static const englebert = PartE.englebert; + + /// See [PartE.englebertTextTheme]. static const englebertTextTheme = PartE.englebertTextTheme; + + /// See [PartE.enriqueta]. static const enriqueta = PartE.enriqueta; + + /// See [PartE.enriquetaTextTheme]. static const enriquetaTextTheme = PartE.enriquetaTextTheme; + + /// See [PartE.ephesis]. static const ephesis = PartE.ephesis; + + /// See [PartE.ephesisTextTheme]. static const ephesisTextTheme = PartE.ephesisTextTheme; + + /// See [PartE.epilogue]. static const epilogue = PartE.epilogue; + + /// See [PartE.epilogueTextTheme]. static const epilogueTextTheme = PartE.epilogueTextTheme; + + /// See [PartE.epundaSans]. static const epundaSans = PartE.epundaSans; + + /// See [PartE.epundaSansTextTheme]. static const epundaSansTextTheme = PartE.epundaSansTextTheme; + + /// See [PartE.epundaSlab]. static const epundaSlab = PartE.epundaSlab; + + /// See [PartE.epundaSlabTextTheme]. static const epundaSlabTextTheme = PartE.epundaSlabTextTheme; + + /// See [PartE.ericaOne]. static const ericaOne = PartE.ericaOne; + + /// See [PartE.ericaOneTextTheme]. static const ericaOneTextTheme = PartE.ericaOneTextTheme; + + /// See [PartE.esteban]. static const esteban = PartE.esteban; + + /// See [PartE.estebanTextTheme]. static const estebanTextTheme = PartE.estebanTextTheme; + + /// See [PartE.estonia]. static const estonia = PartE.estonia; + + /// See [PartE.estoniaTextTheme]. static const estoniaTextTheme = PartE.estoniaTextTheme; + + /// See [PartE.euphoriaScript]. static const euphoriaScript = PartE.euphoriaScript; + + /// See [PartE.euphoriaScriptTextTheme]. static const euphoriaScriptTextTheme = PartE.euphoriaScriptTextTheme; + + /// See [PartE.ewert]. static const ewert = PartE.ewert; + + /// See [PartE.ewertTextTheme]. static const ewertTextTheme = PartE.ewertTextTheme; + + /// See [PartE.exile]. static const exile = PartE.exile; + + /// See [PartE.exileTextTheme]. static const exileTextTheme = PartE.exileTextTheme; + + /// See [PartE.exo]. static const exo = PartE.exo; + + /// See [PartE.exoTextTheme]. static const exoTextTheme = PartE.exoTextTheme; + + /// See [PartE.exo2]. static const exo2 = PartE.exo2; + + /// See [PartE.exo2TextTheme]. static const exo2TextTheme = PartE.exo2TextTheme; + + /// See [PartE.expletusSans]. static const expletusSans = PartE.expletusSans; + + /// See [PartE.expletusSansTextTheme]. static const expletusSansTextTheme = PartE.expletusSansTextTheme; + + /// See [PartE.explora]. static const explora = PartE.explora; + + /// See [PartE.exploraTextTheme]. static const exploraTextTheme = PartE.exploraTextTheme; + + /// See [PartF.facultyGlyphic]. static const facultyGlyphic = PartF.facultyGlyphic; + + /// See [PartF.facultyGlyphicTextTheme]. static const facultyGlyphicTextTheme = PartF.facultyGlyphicTextTheme; + + /// See [PartF.fahkwang]. static const fahkwang = PartF.fahkwang; + + /// See [PartF.fahkwangTextTheme]. static const fahkwangTextTheme = PartF.fahkwangTextTheme; + + /// See [PartF.familjenGrotesk]. static const familjenGrotesk = PartF.familjenGrotesk; + + /// See [PartF.familjenGroteskTextTheme]. static const familjenGroteskTextTheme = PartF.familjenGroteskTextTheme; + + /// See [PartF.fanwoodText]. static const fanwoodText = PartF.fanwoodText; + + /// See [PartF.fanwoodTextTextTheme]. static const fanwoodTextTextTheme = PartF.fanwoodTextTextTheme; + + /// See [PartF.farro]. static const farro = PartF.farro; + + /// See [PartF.farroTextTheme]. static const farroTextTheme = PartF.farroTextTheme; + + /// See [PartF.farsan]. static const farsan = PartF.farsan; + + /// See [PartF.farsanTextTheme]. static const farsanTextTheme = PartF.farsanTextTheme; + + /// See [PartF.fascinate]. static const fascinate = PartF.fascinate; + + /// See [PartF.fascinateTextTheme]. static const fascinateTextTheme = PartF.fascinateTextTheme; + + /// See [PartF.fascinateInline]. static const fascinateInline = PartF.fascinateInline; + + /// See [PartF.fascinateInlineTextTheme]. static const fascinateInlineTextTheme = PartF.fascinateInlineTextTheme; + + /// See [PartF.fasterOne]. static const fasterOne = PartF.fasterOne; + + /// See [PartF.fasterOneTextTheme]. static const fasterOneTextTheme = PartF.fasterOneTextTheme; + + /// See [PartF.fasthand]. static const fasthand = PartF.fasthand; + + /// See [PartF.fasthandTextTheme]. static const fasthandTextTheme = PartF.fasthandTextTheme; + + /// See [PartF.faunaOne]. static const faunaOne = PartF.faunaOne; + + /// See [PartF.faunaOneTextTheme]. static const faunaOneTextTheme = PartF.faunaOneTextTheme; + + /// See [PartF.faustina]. static const faustina = PartF.faustina; + + /// See [PartF.faustinaTextTheme]. static const faustinaTextTheme = PartF.faustinaTextTheme; + + /// See [PartF.federant]. static const federant = PartF.federant; + + /// See [PartF.federantTextTheme]. static const federantTextTheme = PartF.federantTextTheme; + + /// See [PartF.federo]. static const federo = PartF.federo; + + /// See [PartF.federoTextTheme]. static const federoTextTheme = PartF.federoTextTheme; + + /// See [PartF.felipa]. static const felipa = PartF.felipa; + + /// See [PartF.felipaTextTheme]. static const felipaTextTheme = PartF.felipaTextTheme; + + /// See [PartF.fenix]. static const fenix = PartF.fenix; + + /// See [PartF.fenixTextTheme]. static const fenixTextTheme = PartF.fenixTextTheme; + + /// See [PartF.festive]. static const festive = PartF.festive; + + /// See [PartF.festiveTextTheme]. static const festiveTextTheme = PartF.festiveTextTheme; + + /// See [PartF.figtree]. static const figtree = PartF.figtree; + + /// See [PartF.figtreeTextTheme]. static const figtreeTextTheme = PartF.figtreeTextTheme; + + /// See [PartF.fingerPaint]. static const fingerPaint = PartF.fingerPaint; + + /// See [PartF.fingerPaintTextTheme]. static const fingerPaintTextTheme = PartF.fingerPaintTextTheme; + + /// See [PartF.finlandica]. static const finlandica = PartF.finlandica; + + /// See [PartF.finlandicaTextTheme]. static const finlandicaTextTheme = PartF.finlandicaTextTheme; + + /// See [PartF.firaCode]. static const firaCode = PartF.firaCode; + + /// See [PartF.firaCodeTextTheme]. static const firaCodeTextTheme = PartF.firaCodeTextTheme; + + /// See [PartF.firaMono]. static const firaMono = PartF.firaMono; + + /// See [PartF.firaMonoTextTheme]. static const firaMonoTextTheme = PartF.firaMonoTextTheme; + + /// See [PartF.firaSans]. static const firaSans = PartF.firaSans; + + /// See [PartF.firaSansTextTheme]. static const firaSansTextTheme = PartF.firaSansTextTheme; + + /// See [PartF.firaSansCondensed]. static const firaSansCondensed = PartF.firaSansCondensed; + + /// See [PartF.firaSansCondensedTextTheme]. static const firaSansCondensedTextTheme = PartF.firaSansCondensedTextTheme; + + /// See [PartF.firaSansExtraCondensed]. static const firaSansExtraCondensed = PartF.firaSansExtraCondensed; + + /// See [PartF.firaSansExtraCondensedTextTheme]. static const firaSansExtraCondensedTextTheme = PartF.firaSansExtraCondensedTextTheme; + + /// See [PartF.fjallaOne]. static const fjallaOne = PartF.fjallaOne; + + /// See [PartF.fjallaOneTextTheme]. static const fjallaOneTextTheme = PartF.fjallaOneTextTheme; + + /// See [PartF.fjordOne]. static const fjordOne = PartF.fjordOne; + + /// See [PartF.fjordOneTextTheme]. static const fjordOneTextTheme = PartF.fjordOneTextTheme; + + /// See [PartF.flamenco]. static const flamenco = PartF.flamenco; + + /// See [PartF.flamencoTextTheme]. static const flamencoTextTheme = PartF.flamencoTextTheme; + + /// See [PartF.flavors]. static const flavors = PartF.flavors; + + /// See [PartF.flavorsTextTheme]. static const flavorsTextTheme = PartF.flavorsTextTheme; + + /// See [PartF.fleurDeLeah]. static const fleurDeLeah = PartF.fleurDeLeah; + + /// See [PartF.fleurDeLeahTextTheme]. static const fleurDeLeahTextTheme = PartF.fleurDeLeahTextTheme; + + /// See [PartF.flowBlock]. static const flowBlock = PartF.flowBlock; + + /// See [PartF.flowBlockTextTheme]. static const flowBlockTextTheme = PartF.flowBlockTextTheme; + + /// See [PartF.flowCircular]. static const flowCircular = PartF.flowCircular; + + /// See [PartF.flowCircularTextTheme]. static const flowCircularTextTheme = PartF.flowCircularTextTheme; + + /// See [PartF.flowRounded]. static const flowRounded = PartF.flowRounded; + + /// See [PartF.flowRoundedTextTheme]. static const flowRoundedTextTheme = PartF.flowRoundedTextTheme; + + /// See [PartF.foldit]. static const foldit = PartF.foldit; + + /// See [PartF.folditTextTheme]. static const folditTextTheme = PartF.folditTextTheme; + + /// See [PartF.fondamento]. static const fondamento = PartF.fondamento; + + /// See [PartF.fondamentoTextTheme]. static const fondamentoTextTheme = PartF.fondamentoTextTheme; + + /// See [PartF.fontdinerSwanky]. static const fontdinerSwanky = PartF.fontdinerSwanky; + + /// See [PartF.fontdinerSwankyTextTheme]. static const fontdinerSwankyTextTheme = PartF.fontdinerSwankyTextTheme; + + /// See [PartF.forum]. static const forum = PartF.forum; + + /// See [PartF.forumTextTheme]. static const forumTextTheme = PartF.forumTextTheme; + + /// See [PartF.fragmentMono]. static const fragmentMono = PartF.fragmentMono; + + /// See [PartF.fragmentMonoTextTheme]. static const fragmentMonoTextTheme = PartF.fragmentMonoTextTheme; + + /// See [PartF.francoisOne]. static const francoisOne = PartF.francoisOne; + + /// See [PartF.francoisOneTextTheme]. static const francoisOneTextTheme = PartF.francoisOneTextTheme; + + /// See [PartF.frankRuhlLibre]. static const frankRuhlLibre = PartF.frankRuhlLibre; + + /// See [PartF.frankRuhlLibreTextTheme]. static const frankRuhlLibreTextTheme = PartF.frankRuhlLibreTextTheme; + + /// See [PartF.fraunces]. static const fraunces = PartF.fraunces; + + /// See [PartF.frauncesTextTheme]. static const frauncesTextTheme = PartF.frauncesTextTheme; + + /// See [PartF.freckleFace]. static const freckleFace = PartF.freckleFace; + + /// See [PartF.freckleFaceTextTheme]. static const freckleFaceTextTheme = PartF.freckleFaceTextTheme; + + /// See [PartF.frederickaTheGreat]. static const frederickaTheGreat = PartF.frederickaTheGreat; + + /// See [PartF.frederickaTheGreatTextTheme]. static const frederickaTheGreatTextTheme = PartF.frederickaTheGreatTextTheme; + + /// See [PartF.fredoka]. static const fredoka = PartF.fredoka; + + /// See [PartF.fredokaTextTheme]. static const fredokaTextTheme = PartF.fredokaTextTheme; + + /// See [PartF.freehand]. static const freehand = PartF.freehand; + + /// See [PartF.freehandTextTheme]. static const freehandTextTheme = PartF.freehandTextTheme; + + /// See [PartF.freeman]. static const freeman = PartF.freeman; + + /// See [PartF.freemanTextTheme]. static const freemanTextTheme = PartF.freemanTextTheme; + + /// See [PartF.fresca]. static const fresca = PartF.fresca; + + /// See [PartF.frescaTextTheme]. static const frescaTextTheme = PartF.frescaTextTheme; + + /// See [PartF.frijole]. static const frijole = PartF.frijole; + + /// See [PartF.frijoleTextTheme]. static const frijoleTextTheme = PartF.frijoleTextTheme; + + /// See [PartF.fruktur]. static const fruktur = PartF.fruktur; + + /// See [PartF.frukturTextTheme]. static const frukturTextTheme = PartF.frukturTextTheme; + + /// See [PartF.fugazOne]. static const fugazOne = PartF.fugazOne; + + /// See [PartF.fugazOneTextTheme]. static const fugazOneTextTheme = PartF.fugazOneTextTheme; + + /// See [PartF.fuggles]. static const fuggles = PartF.fuggles; + + /// See [PartF.fugglesTextTheme]. static const fugglesTextTheme = PartF.fugglesTextTheme; + + /// See [PartF.funnelDisplay]. static const funnelDisplay = PartF.funnelDisplay; + + /// See [PartF.funnelDisplayTextTheme]. static const funnelDisplayTextTheme = PartF.funnelDisplayTextTheme; + + /// See [PartF.funnelSans]. static const funnelSans = PartF.funnelSans; + + /// See [PartF.funnelSansTextTheme]. static const funnelSansTextTheme = PartF.funnelSansTextTheme; + + /// See [PartF.fustat]. static const fustat = PartF.fustat; + + /// See [PartF.fustatTextTheme]. static const fustatTextTheme = PartF.fustatTextTheme; + + /// See [PartF.fuzzyBubbles]. static const fuzzyBubbles = PartF.fuzzyBubbles; + + /// See [PartF.fuzzyBubblesTextTheme]. static const fuzzyBubblesTextTheme = PartF.fuzzyBubblesTextTheme; + + /// See [PartG.gfsDidot]. static const gfsDidot = PartG.gfsDidot; + + /// See [PartG.gfsDidotTextTheme]. static const gfsDidotTextTheme = PartG.gfsDidotTextTheme; + + /// See [PartG.gfsNeohellenic]. static const gfsNeohellenic = PartG.gfsNeohellenic; + + /// See [PartG.gfsNeohellenicTextTheme]. static const gfsNeohellenicTextTheme = PartG.gfsNeohellenicTextTheme; + + /// See [PartG.gaMaamli]. static const gaMaamli = PartG.gaMaamli; + + /// See [PartG.gaMaamliTextTheme]. static const gaMaamliTextTheme = PartG.gaMaamliTextTheme; + + /// See [PartG.gabarito]. static const gabarito = PartG.gabarito; + + /// See [PartG.gabaritoTextTheme]. static const gabaritoTextTheme = PartG.gabaritoTextTheme; + + /// See [PartG.gabriela]. static const gabriela = PartG.gabriela; + + /// See [PartG.gabrielaTextTheme]. static const gabrielaTextTheme = PartG.gabrielaTextTheme; + + /// See [PartG.gaegu]. static const gaegu = PartG.gaegu; + + /// See [PartG.gaeguTextTheme]. static const gaeguTextTheme = PartG.gaeguTextTheme; + + /// See [PartG.gafata]. static const gafata = PartG.gafata; + + /// See [PartG.gafataTextTheme]. static const gafataTextTheme = PartG.gafataTextTheme; + + /// See [PartG.gajrajOne]. static const gajrajOne = PartG.gajrajOne; + + /// See [PartG.gajrajOneTextTheme]. static const gajrajOneTextTheme = PartG.gajrajOneTextTheme; + + /// See [PartG.galada]. static const galada = PartG.galada; + + /// See [PartG.galadaTextTheme]. static const galadaTextTheme = PartG.galadaTextTheme; + + /// See [PartG.galdeano]. static const galdeano = PartG.galdeano; + + /// See [PartG.galdeanoTextTheme]. static const galdeanoTextTheme = PartG.galdeanoTextTheme; + + /// See [PartG.galindo]. static const galindo = PartG.galindo; + + /// See [PartG.galindoTextTheme]. static const galindoTextTheme = PartG.galindoTextTheme; + + /// See [PartG.gamjaFlower]. static const gamjaFlower = PartG.gamjaFlower; + + /// See [PartG.gamjaFlowerTextTheme]. static const gamjaFlowerTextTheme = PartG.gamjaFlowerTextTheme; + + /// See [PartG.gantari]. static const gantari = PartG.gantari; + + /// See [PartG.gantariTextTheme]. static const gantariTextTheme = PartG.gantariTextTheme; + + /// See [PartG.gasoekOne]. static const gasoekOne = PartG.gasoekOne; + + /// See [PartG.gasoekOneTextTheme]. static const gasoekOneTextTheme = PartG.gasoekOneTextTheme; + + /// See [PartG.gayathri]. static const gayathri = PartG.gayathri; + + /// See [PartG.gayathriTextTheme]. static const gayathriTextTheme = PartG.gayathriTextTheme; + + /// See [PartG.geist]. static const geist = PartG.geist; + + /// See [PartG.geistTextTheme]. static const geistTextTheme = PartG.geistTextTheme; + + /// See [PartG.geistMono]. static const geistMono = PartG.geistMono; + + /// See [PartG.geistMonoTextTheme]. static const geistMonoTextTheme = PartG.geistMonoTextTheme; + + /// See [PartG.gelasio]. static const gelasio = PartG.gelasio; + + /// See [PartG.gelasioTextTheme]. static const gelasioTextTheme = PartG.gelasioTextTheme; + + /// See [PartG.gemunuLibre]. static const gemunuLibre = PartG.gemunuLibre; + + /// See [PartG.gemunuLibreTextTheme]. static const gemunuLibreTextTheme = PartG.gemunuLibreTextTheme; + + /// See [PartG.genos]. static const genos = PartG.genos; + + /// See [PartG.genosTextTheme]. static const genosTextTheme = PartG.genosTextTheme; + + /// See [PartG.gentiumBookPlus]. static const gentiumBookPlus = PartG.gentiumBookPlus; + + /// See [PartG.gentiumBookPlusTextTheme]. static const gentiumBookPlusTextTheme = PartG.gentiumBookPlusTextTheme; + + /// See [PartG.gentiumPlus]. static const gentiumPlus = PartG.gentiumPlus; + + /// See [PartG.gentiumPlusTextTheme]. static const gentiumPlusTextTheme = PartG.gentiumPlusTextTheme; + + /// See [PartG.geo]. static const geo = PartG.geo; + + /// See [PartG.geoTextTheme]. static const geoTextTheme = PartG.geoTextTheme; + + /// See [PartG.geologica]. static const geologica = PartG.geologica; + + /// See [PartG.geologicaTextTheme]. static const geologicaTextTheme = PartG.geologicaTextTheme; + + /// See [PartG.georama]. static const georama = PartG.georama; + + /// See [PartG.georamaTextTheme]. static const georamaTextTheme = PartG.georamaTextTheme; + + /// See [PartG.geostar]. static const geostar = PartG.geostar; + + /// See [PartG.geostarTextTheme]. static const geostarTextTheme = PartG.geostarTextTheme; + + /// See [PartG.geostarFill]. static const geostarFill = PartG.geostarFill; + + /// See [PartG.geostarFillTextTheme]. static const geostarFillTextTheme = PartG.geostarFillTextTheme; + + /// See [PartG.germaniaOne]. static const germaniaOne = PartG.germaniaOne; + + /// See [PartG.germaniaOneTextTheme]. static const germaniaOneTextTheme = PartG.germaniaOneTextTheme; + + /// See [PartG.gideonRoman]. static const gideonRoman = PartG.gideonRoman; + + /// See [PartG.gideonRomanTextTheme]. static const gideonRomanTextTheme = PartG.gideonRomanTextTheme; + + /// See [PartG.gidole]. static const gidole = PartG.gidole; + + /// See [PartG.gidoleTextTheme]. static const gidoleTextTheme = PartG.gidoleTextTheme; + + /// See [PartG.gidugu]. static const gidugu = PartG.gidugu; + + /// See [PartG.giduguTextTheme]. static const giduguTextTheme = PartG.giduguTextTheme; + + /// See [PartG.gildaDisplay]. static const gildaDisplay = PartG.gildaDisplay; + + /// See [PartG.gildaDisplayTextTheme]. static const gildaDisplayTextTheme = PartG.gildaDisplayTextTheme; + + /// See [PartG.girassol]. static const girassol = PartG.girassol; + + /// See [PartG.girassolTextTheme]. static const girassolTextTheme = PartG.girassolTextTheme; + + /// See [PartG.giveYouGlory]. static const giveYouGlory = PartG.giveYouGlory; + + /// See [PartG.giveYouGloryTextTheme]. static const giveYouGloryTextTheme = PartG.giveYouGloryTextTheme; + + /// See [PartG.glassAntiqua]. static const glassAntiqua = PartG.glassAntiqua; + + /// See [PartG.glassAntiquaTextTheme]. static const glassAntiquaTextTheme = PartG.glassAntiquaTextTheme; + + /// See [PartG.glegoo]. static const glegoo = PartG.glegoo; + + /// See [PartG.glegooTextTheme]. static const glegooTextTheme = PartG.glegooTextTheme; + + /// See [PartG.gloock]. static const gloock = PartG.gloock; + + /// See [PartG.gloockTextTheme]. static const gloockTextTheme = PartG.gloockTextTheme; + + /// See [PartG.gloriaHallelujah]. static const gloriaHallelujah = PartG.gloriaHallelujah; + + /// See [PartG.gloriaHallelujahTextTheme]. static const gloriaHallelujahTextTheme = PartG.gloriaHallelujahTextTheme; + + /// See [PartG.glory]. static const glory = PartG.glory; + + /// See [PartG.gloryTextTheme]. static const gloryTextTheme = PartG.gloryTextTheme; + + /// See [PartG.gluten]. static const gluten = PartG.gluten; + + /// See [PartG.glutenTextTheme]. static const glutenTextTheme = PartG.glutenTextTheme; + + /// See [PartG.goblinOne]. static const goblinOne = PartG.goblinOne; + + /// See [PartG.goblinOneTextTheme]. static const goblinOneTextTheme = PartG.goblinOneTextTheme; + + /// See [PartG.gochiHand]. static const gochiHand = PartG.gochiHand; + + /// See [PartG.gochiHandTextTheme]. static const gochiHandTextTheme = PartG.gochiHandTextTheme; + + /// See [PartG.goldman]. static const goldman = PartG.goldman; + + /// See [PartG.goldmanTextTheme]. static const goldmanTextTheme = PartG.goldmanTextTheme; + + /// See [PartG.golosText]. static const golosText = PartG.golosText; + + /// See [PartG.golosTextTextTheme]. static const golosTextTextTheme = PartG.golosTextTextTheme; + + /// See [PartG.googleSansCode]. static const googleSansCode = PartG.googleSansCode; + + /// See [PartG.googleSansCodeTextTheme]. static const googleSansCodeTextTheme = PartG.googleSansCodeTextTheme; + + /// See [PartG.gorditas]. static const gorditas = PartG.gorditas; + + /// See [PartG.gorditasTextTheme]. static const gorditasTextTheme = PartG.gorditasTextTheme; + + /// See [PartG.gothicA1]. static const gothicA1 = PartG.gothicA1; + + /// See [PartG.gothicA1TextTheme]. static const gothicA1TextTheme = PartG.gothicA1TextTheme; + + /// See [PartG.gotu]. static const gotu = PartG.gotu; + + /// See [PartG.gotuTextTheme]. static const gotuTextTheme = PartG.gotuTextTheme; + + /// See [PartG.goudyBookletter1911]. static const goudyBookletter1911 = PartG.goudyBookletter1911; + + /// See [PartG.goudyBookletter1911TextTheme]. static const goudyBookletter1911TextTheme = PartG.goudyBookletter1911TextTheme; + + /// See [PartG.gowunBatang]. static const gowunBatang = PartG.gowunBatang; + + /// See [PartG.gowunBatangTextTheme]. static const gowunBatangTextTheme = PartG.gowunBatangTextTheme; + + /// See [PartG.gowunDodum]. static const gowunDodum = PartG.gowunDodum; + + /// See [PartG.gowunDodumTextTheme]. static const gowunDodumTextTheme = PartG.gowunDodumTextTheme; + + /// See [PartG.graduate]. static const graduate = PartG.graduate; + + /// See [PartG.graduateTextTheme]. static const graduateTextTheme = PartG.graduateTextTheme; + + /// See [PartG.grandHotel]. static const grandHotel = PartG.grandHotel; + + /// See [PartG.grandHotelTextTheme]. static const grandHotelTextTheme = PartG.grandHotelTextTheme; + + /// See [PartG.grandifloraOne]. static const grandifloraOne = PartG.grandifloraOne; + + /// See [PartG.grandifloraOneTextTheme]. static const grandifloraOneTextTheme = PartG.grandifloraOneTextTheme; + + /// See [PartG.grandstander]. static const grandstander = PartG.grandstander; + + /// See [PartG.grandstanderTextTheme]. static const grandstanderTextTheme = PartG.grandstanderTextTheme; + + /// See [PartG.grapeNuts]. static const grapeNuts = PartG.grapeNuts; + + /// See [PartG.grapeNutsTextTheme]. static const grapeNutsTextTheme = PartG.grapeNutsTextTheme; + + /// See [PartG.gravitasOne]. static const gravitasOne = PartG.gravitasOne; + + /// See [PartG.gravitasOneTextTheme]. static const gravitasOneTextTheme = PartG.gravitasOneTextTheme; + + /// See [PartG.greatVibes]. static const greatVibes = PartG.greatVibes; + + /// See [PartG.greatVibesTextTheme]. static const greatVibesTextTheme = PartG.greatVibesTextTheme; + + /// See [PartG.grechenFuemen]. static const grechenFuemen = PartG.grechenFuemen; + + /// See [PartG.grechenFuemenTextTheme]. static const grechenFuemenTextTheme = PartG.grechenFuemenTextTheme; + + /// See [PartG.grenze]. static const grenze = PartG.grenze; + + /// See [PartG.grenzeTextTheme]. static const grenzeTextTheme = PartG.grenzeTextTheme; + + /// See [PartG.grenzeGotisch]. static const grenzeGotisch = PartG.grenzeGotisch; + + /// See [PartG.grenzeGotischTextTheme]. static const grenzeGotischTextTheme = PartG.grenzeGotischTextTheme; + + /// See [PartG.greyQo]. static const greyQo = PartG.greyQo; + + /// See [PartG.greyQoTextTheme]. static const greyQoTextTheme = PartG.greyQoTextTheme; + + /// See [PartG.griffy]. static const griffy = PartG.griffy; + + /// See [PartG.griffyTextTheme]. static const griffyTextTheme = PartG.griffyTextTheme; + + /// See [PartG.gruppo]. static const gruppo = PartG.gruppo; + + /// See [PartG.gruppoTextTheme]. static const gruppoTextTheme = PartG.gruppoTextTheme; + + /// See [PartG.gudea]. static const gudea = PartG.gudea; + + /// See [PartG.gudeaTextTheme]. static const gudeaTextTheme = PartG.gudeaTextTheme; + + /// See [PartG.gugi]. static const gugi = PartG.gugi; + + /// See [PartG.gugiTextTheme]. static const gugiTextTheme = PartG.gugiTextTheme; + + /// See [PartG.gulzar]. static const gulzar = PartG.gulzar; + + /// See [PartG.gulzarTextTheme]. static const gulzarTextTheme = PartG.gulzarTextTheme; + + /// See [PartG.gupter]. static const gupter = PartG.gupter; + + /// See [PartG.gupterTextTheme]. static const gupterTextTheme = PartG.gupterTextTheme; + + /// See [PartG.gurajada]. static const gurajada = PartG.gurajada; + + /// See [PartG.gurajadaTextTheme]. static const gurajadaTextTheme = PartG.gurajadaTextTheme; + + /// See [PartG.gwendolyn]. static const gwendolyn = PartG.gwendolyn; + + /// See [PartG.gwendolynTextTheme]. static const gwendolynTextTheme = PartG.gwendolynTextTheme; + + /// See [PartH.habibi]. static const habibi = PartH.habibi; + + /// See [PartH.habibiTextTheme]. static const habibiTextTheme = PartH.habibiTextTheme; + + /// See [PartH.hachiMaruPop]. static const hachiMaruPop = PartH.hachiMaruPop; + + /// See [PartH.hachiMaruPopTextTheme]. static const hachiMaruPopTextTheme = PartH.hachiMaruPopTextTheme; + + /// See [PartH.hahmlet]. static const hahmlet = PartH.hahmlet; + + /// See [PartH.hahmletTextTheme]. static const hahmletTextTheme = PartH.hahmletTextTheme; + + /// See [PartH.halant]. static const halant = PartH.halant; + + /// See [PartH.halantTextTheme]. static const halantTextTheme = PartH.halantTextTheme; + + /// See [PartH.hammersmithOne]. static const hammersmithOne = PartH.hammersmithOne; + + /// See [PartH.hammersmithOneTextTheme]. static const hammersmithOneTextTheme = PartH.hammersmithOneTextTheme; + + /// See [PartH.hanalei]. static const hanalei = PartH.hanalei; + + /// See [PartH.hanaleiTextTheme]. static const hanaleiTextTheme = PartH.hanaleiTextTheme; + + /// See [PartH.hanaleiFill]. static const hanaleiFill = PartH.hanaleiFill; + + /// See [PartH.hanaleiFillTextTheme]. static const hanaleiFillTextTheme = PartH.hanaleiFillTextTheme; + + /// See [PartH.handjet]. static const handjet = PartH.handjet; + + /// See [PartH.handjetTextTheme]. static const handjetTextTheme = PartH.handjetTextTheme; + + /// See [PartH.handlee]. static const handlee = PartH.handlee; + + /// See [PartH.handleeTextTheme]. static const handleeTextTheme = PartH.handleeTextTheme; + + /// See [PartH.hankenGrotesk]. static const hankenGrotesk = PartH.hankenGrotesk; + + /// See [PartH.hankenGroteskTextTheme]. static const hankenGroteskTextTheme = PartH.hankenGroteskTextTheme; + + /// See [PartH.hanuman]. static const hanuman = PartH.hanuman; + + /// See [PartH.hanumanTextTheme]. static const hanumanTextTheme = PartH.hanumanTextTheme; + + /// See [PartH.happyMonkey]. static const happyMonkey = PartH.happyMonkey; + + /// See [PartH.happyMonkeyTextTheme]. static const happyMonkeyTextTheme = PartH.happyMonkeyTextTheme; + + /// See [PartH.harmattan]. static const harmattan = PartH.harmattan; + + /// See [PartH.harmattanTextTheme]. static const harmattanTextTheme = PartH.harmattanTextTheme; + + /// See [PartH.headlandOne]. static const headlandOne = PartH.headlandOne; + + /// See [PartH.headlandOneTextTheme]. static const headlandOneTextTheme = PartH.headlandOneTextTheme; + + /// See [PartH.hedvigLettersSans]. static const hedvigLettersSans = PartH.hedvigLettersSans; + + /// See [PartH.hedvigLettersSansTextTheme]. static const hedvigLettersSansTextTheme = PartH.hedvigLettersSansTextTheme; + + /// See [PartH.hedvigLettersSerif]. static const hedvigLettersSerif = PartH.hedvigLettersSerif; + + /// See [PartH.hedvigLettersSerifTextTheme]. static const hedvigLettersSerifTextTheme = PartH.hedvigLettersSerifTextTheme; + + /// See [PartH.heebo]. static const heebo = PartH.heebo; + + /// See [PartH.heeboTextTheme]. static const heeboTextTheme = PartH.heeboTextTheme; + + /// See [PartH.hennyPenny]. static const hennyPenny = PartH.hennyPenny; + + /// See [PartH.hennyPennyTextTheme]. static const hennyPennyTextTheme = PartH.hennyPennyTextTheme; + + /// See [PartH.heptaSlab]. static const heptaSlab = PartH.heptaSlab; + + /// See [PartH.heptaSlabTextTheme]. static const heptaSlabTextTheme = PartH.heptaSlabTextTheme; + + /// See [PartH.herrVonMuellerhoff]. static const herrVonMuellerhoff = PartH.herrVonMuellerhoff; + + /// See [PartH.herrVonMuellerhoffTextTheme]. static const herrVonMuellerhoffTextTheme = PartH.herrVonMuellerhoffTextTheme; + + /// See [PartH.hiMelody]. static const hiMelody = PartH.hiMelody; + + /// See [PartH.hiMelodyTextTheme]. static const hiMelodyTextTheme = PartH.hiMelodyTextTheme; + + /// See [PartH.hinaMincho]. static const hinaMincho = PartH.hinaMincho; + + /// See [PartH.hinaMinchoTextTheme]. static const hinaMinchoTextTheme = PartH.hinaMinchoTextTheme; + + /// See [PartH.hind]. static const hind = PartH.hind; + + /// See [PartH.hindTextTheme]. static const hindTextTheme = PartH.hindTextTheme; + + /// See [PartH.hindGuntur]. static const hindGuntur = PartH.hindGuntur; + + /// See [PartH.hindGunturTextTheme]. static const hindGunturTextTheme = PartH.hindGunturTextTheme; + + /// See [PartH.hindMadurai]. static const hindMadurai = PartH.hindMadurai; + + /// See [PartH.hindMaduraiTextTheme]. static const hindMaduraiTextTheme = PartH.hindMaduraiTextTheme; + + /// See [PartH.hindMysuru]. static const hindMysuru = PartH.hindMysuru; + + /// See [PartH.hindMysuruTextTheme]. static const hindMysuruTextTheme = PartH.hindMysuruTextTheme; + + /// See [PartH.hindSiliguri]. static const hindSiliguri = PartH.hindSiliguri; + + /// See [PartH.hindSiliguriTextTheme]. static const hindSiliguriTextTheme = PartH.hindSiliguriTextTheme; + + /// See [PartH.hindVadodara]. static const hindVadodara = PartH.hindVadodara; + + /// See [PartH.hindVadodaraTextTheme]. static const hindVadodaraTextTheme = PartH.hindVadodaraTextTheme; + + /// See [PartH.holtwoodOneSc]. static const holtwoodOneSc = PartH.holtwoodOneSc; + + /// See [PartH.holtwoodOneScTextTheme]. static const holtwoodOneScTextTheme = PartH.holtwoodOneScTextTheme; + + /// See [PartH.homemadeApple]. static const homemadeApple = PartH.homemadeApple; + + /// See [PartH.homemadeAppleTextTheme]. static const homemadeAppleTextTheme = PartH.homemadeAppleTextTheme; + + /// See [PartH.homenaje]. static const homenaje = PartH.homenaje; + + /// See [PartH.homenajeTextTheme]. static const homenajeTextTheme = PartH.homenajeTextTheme; + + /// See [PartH.honk]. static const honk = PartH.honk; + + /// See [PartH.honkTextTheme]. static const honkTextTheme = PartH.honkTextTheme; + + /// See [PartH.hostGrotesk]. static const hostGrotesk = PartH.hostGrotesk; + + /// See [PartH.hostGroteskTextTheme]. static const hostGroteskTextTheme = PartH.hostGroteskTextTheme; + + /// See [PartH.hubballi]. static const hubballi = PartH.hubballi; + + /// See [PartH.hubballiTextTheme]. static const hubballiTextTheme = PartH.hubballiTextTheme; + + /// See [PartH.hubotSans]. static const hubotSans = PartH.hubotSans; + + /// See [PartH.hubotSansTextTheme]. static const hubotSansTextTheme = PartH.hubotSansTextTheme; + + /// See [PartH.huninn]. static const huninn = PartH.huninn; + + /// See [PartH.huninnTextTheme]. static const huninnTextTheme = PartH.huninnTextTheme; + + /// See [PartH.hurricane]. static const hurricane = PartH.hurricane; + + /// See [PartH.hurricaneTextTheme]. static const hurricaneTextTheme = PartH.hurricaneTextTheme; + + /// See [PartI.ibmPlexMono]. static const ibmPlexMono = PartI.ibmPlexMono; + + /// See [PartI.ibmPlexMonoTextTheme]. static const ibmPlexMonoTextTheme = PartI.ibmPlexMonoTextTheme; + + /// See [PartI.ibmPlexSans]. static const ibmPlexSans = PartI.ibmPlexSans; + + /// See [PartI.ibmPlexSansTextTheme]. static const ibmPlexSansTextTheme = PartI.ibmPlexSansTextTheme; + + /// See [PartI.ibmPlexSansArabic]. static const ibmPlexSansArabic = PartI.ibmPlexSansArabic; + + /// See [PartI.ibmPlexSansArabicTextTheme]. static const ibmPlexSansArabicTextTheme = PartI.ibmPlexSansArabicTextTheme; + + /// See [PartI.ibmPlexSansDevanagari]. static const ibmPlexSansDevanagari = PartI.ibmPlexSansDevanagari; + + /// See [PartI.ibmPlexSansDevanagariTextTheme]. static const ibmPlexSansDevanagariTextTheme = PartI.ibmPlexSansDevanagariTextTheme; + + /// See [PartI.ibmPlexSansHebrew]. static const ibmPlexSansHebrew = PartI.ibmPlexSansHebrew; + + /// See [PartI.ibmPlexSansHebrewTextTheme]. static const ibmPlexSansHebrewTextTheme = PartI.ibmPlexSansHebrewTextTheme; + + /// See [PartI.ibmPlexSansJp]. static const ibmPlexSansJp = PartI.ibmPlexSansJp; + + /// See [PartI.ibmPlexSansJpTextTheme]. static const ibmPlexSansJpTextTheme = PartI.ibmPlexSansJpTextTheme; + + /// See [PartI.ibmPlexSansKr]. static const ibmPlexSansKr = PartI.ibmPlexSansKr; + + /// See [PartI.ibmPlexSansKrTextTheme]. static const ibmPlexSansKrTextTheme = PartI.ibmPlexSansKrTextTheme; + + /// See [PartI.ibmPlexSansThai]. static const ibmPlexSansThai = PartI.ibmPlexSansThai; + + /// See [PartI.ibmPlexSansThaiTextTheme]. static const ibmPlexSansThaiTextTheme = PartI.ibmPlexSansThaiTextTheme; + + /// See [PartI.ibmPlexSansThaiLooped]. static const ibmPlexSansThaiLooped = PartI.ibmPlexSansThaiLooped; + + /// See [PartI.ibmPlexSansThaiLoopedTextTheme]. static const ibmPlexSansThaiLoopedTextTheme = PartI.ibmPlexSansThaiLoopedTextTheme; + + /// See [PartI.ibmPlexSerif]. static const ibmPlexSerif = PartI.ibmPlexSerif; + + /// See [PartI.ibmPlexSerifTextTheme]. static const ibmPlexSerifTextTheme = PartI.ibmPlexSerifTextTheme; + + /// See [PartI.imFellDwPica]. static const imFellDwPica = PartI.imFellDwPica; + + /// See [PartI.imFellDwPicaTextTheme]. static const imFellDwPicaTextTheme = PartI.imFellDwPicaTextTheme; + + /// See [PartI.imFellDwPicaSc]. static const imFellDwPicaSc = PartI.imFellDwPicaSc; + + /// See [PartI.imFellDwPicaScTextTheme]. static const imFellDwPicaScTextTheme = PartI.imFellDwPicaScTextTheme; + + /// See [PartI.imFellDoublePica]. static const imFellDoublePica = PartI.imFellDoublePica; + + /// See [PartI.imFellDoublePicaTextTheme]. static const imFellDoublePicaTextTheme = PartI.imFellDoublePicaTextTheme; + + /// See [PartI.imFellDoublePicaSc]. static const imFellDoublePicaSc = PartI.imFellDoublePicaSc; + + /// See [PartI.imFellDoublePicaScTextTheme]. static const imFellDoublePicaScTextTheme = PartI.imFellDoublePicaScTextTheme; + + /// See [PartI.imFellEnglish]. static const imFellEnglish = PartI.imFellEnglish; + + /// See [PartI.imFellEnglishTextTheme]. static const imFellEnglishTextTheme = PartI.imFellEnglishTextTheme; + + /// See [PartI.imFellEnglishSc]. static const imFellEnglishSc = PartI.imFellEnglishSc; + + /// See [PartI.imFellEnglishScTextTheme]. static const imFellEnglishScTextTheme = PartI.imFellEnglishScTextTheme; + + /// See [PartI.imFellFrenchCanon]. static const imFellFrenchCanon = PartI.imFellFrenchCanon; + + /// See [PartI.imFellFrenchCanonTextTheme]. static const imFellFrenchCanonTextTheme = PartI.imFellFrenchCanonTextTheme; + + /// See [PartI.imFellFrenchCanonSc]. static const imFellFrenchCanonSc = PartI.imFellFrenchCanonSc; + + /// See [PartI.imFellFrenchCanonScTextTheme]. static const imFellFrenchCanonScTextTheme = PartI.imFellFrenchCanonScTextTheme; + + /// See [PartI.imFellGreatPrimer]. static const imFellGreatPrimer = PartI.imFellGreatPrimer; + + /// See [PartI.imFellGreatPrimerTextTheme]. static const imFellGreatPrimerTextTheme = PartI.imFellGreatPrimerTextTheme; + + /// See [PartI.imFellGreatPrimerSc]. static const imFellGreatPrimerSc = PartI.imFellGreatPrimerSc; + + /// See [PartI.imFellGreatPrimerScTextTheme]. static const imFellGreatPrimerScTextTheme = PartI.imFellGreatPrimerScTextTheme; + + /// See [PartI.iansui]. static const iansui = PartI.iansui; + + /// See [PartI.iansuiTextTheme]. static const iansuiTextTheme = PartI.iansuiTextTheme; + + /// See [PartI.ibarraRealNova]. static const ibarraRealNova = PartI.ibarraRealNova; + + /// See [PartI.ibarraRealNovaTextTheme]. static const ibarraRealNovaTextTheme = PartI.ibarraRealNovaTextTheme; + + /// See [PartI.iceberg]. static const iceberg = PartI.iceberg; + + /// See [PartI.icebergTextTheme]. static const icebergTextTheme = PartI.icebergTextTheme; + + /// See [PartI.iceland]. static const iceland = PartI.iceland; + + /// See [PartI.icelandTextTheme]. static const icelandTextTheme = PartI.icelandTextTheme; + + /// See [PartI.imbue]. static const imbue = PartI.imbue; + + /// See [PartI.imbueTextTheme]. static const imbueTextTheme = PartI.imbueTextTheme; + + /// See [PartI.imperialScript]. static const imperialScript = PartI.imperialScript; + + /// See [PartI.imperialScriptTextTheme]. static const imperialScriptTextTheme = PartI.imperialScriptTextTheme; + + /// See [PartI.imprima]. static const imprima = PartI.imprima; + + /// See [PartI.imprimaTextTheme]. static const imprimaTextTheme = PartI.imprimaTextTheme; + + /// See [PartI.inclusiveSans]. static const inclusiveSans = PartI.inclusiveSans; + + /// See [PartI.inclusiveSansTextTheme]. static const inclusiveSansTextTheme = PartI.inclusiveSansTextTheme; + + /// See [PartI.inconsolata]. static const inconsolata = PartI.inconsolata; + + /// See [PartI.inconsolataTextTheme]. static const inconsolataTextTheme = PartI.inconsolataTextTheme; + + /// See [PartI.inder]. static const inder = PartI.inder; + + /// See [PartI.inderTextTheme]. static const inderTextTheme = PartI.inderTextTheme; + + /// See [PartI.indieFlower]. static const indieFlower = PartI.indieFlower; + + /// See [PartI.indieFlowerTextTheme]. static const indieFlowerTextTheme = PartI.indieFlowerTextTheme; + + /// See [PartI.ingridDarling]. static const ingridDarling = PartI.ingridDarling; + + /// See [PartI.ingridDarlingTextTheme]. static const ingridDarlingTextTheme = PartI.ingridDarlingTextTheme; + + /// See [PartI.inika]. static const inika = PartI.inika; + + /// See [PartI.inikaTextTheme]. static const inikaTextTheme = PartI.inikaTextTheme; + + /// See [PartI.inknutAntiqua]. static const inknutAntiqua = PartI.inknutAntiqua; + + /// See [PartI.inknutAntiquaTextTheme]. static const inknutAntiquaTextTheme = PartI.inknutAntiquaTextTheme; + + /// See [PartI.inriaSans]. static const inriaSans = PartI.inriaSans; + + /// See [PartI.inriaSansTextTheme]. static const inriaSansTextTheme = PartI.inriaSansTextTheme; + + /// See [PartI.inriaSerif]. static const inriaSerif = PartI.inriaSerif; + + /// See [PartI.inriaSerifTextTheme]. static const inriaSerifTextTheme = PartI.inriaSerifTextTheme; + + /// See [PartI.inspiration]. static const inspiration = PartI.inspiration; + + /// See [PartI.inspirationTextTheme]. static const inspirationTextTheme = PartI.inspirationTextTheme; + + /// See [PartI.instrumentSans]. static const instrumentSans = PartI.instrumentSans; + + /// See [PartI.instrumentSansTextTheme]. static const instrumentSansTextTheme = PartI.instrumentSansTextTheme; + + /// See [PartI.instrumentSerif]. static const instrumentSerif = PartI.instrumentSerif; + + /// See [PartI.instrumentSerifTextTheme]. static const instrumentSerifTextTheme = PartI.instrumentSerifTextTheme; + + /// See [PartI.intelOneMono]. static const intelOneMono = PartI.intelOneMono; + + /// See [PartI.intelOneMonoTextTheme]. static const intelOneMonoTextTheme = PartI.intelOneMonoTextTheme; + + /// See [PartI.inter]. static const inter = PartI.inter; + + /// See [PartI.interTextTheme]. static const interTextTheme = PartI.interTextTheme; + + /// See [PartI.interTight]. static const interTight = PartI.interTight; + + /// See [PartI.interTightTextTheme]. static const interTightTextTheme = PartI.interTightTextTheme; + + /// See [PartI.irishGrover]. static const irishGrover = PartI.irishGrover; + + /// See [PartI.irishGroverTextTheme]. static const irishGroverTextTheme = PartI.irishGroverTextTheme; + + /// See [PartI.islandMoments]. static const islandMoments = PartI.islandMoments; + + /// See [PartI.islandMomentsTextTheme]. static const islandMomentsTextTheme = PartI.islandMomentsTextTheme; + + /// See [PartI.istokWeb]. static const istokWeb = PartI.istokWeb; + + /// See [PartI.istokWebTextTheme]. static const istokWebTextTheme = PartI.istokWebTextTheme; + + /// See [PartI.italiana]. static const italiana = PartI.italiana; + + /// See [PartI.italianaTextTheme]. static const italianaTextTheme = PartI.italianaTextTheme; + + /// See [PartI.italianno]. static const italianno = PartI.italianno; + + /// See [PartI.italiannoTextTheme]. static const italiannoTextTheme = PartI.italiannoTextTheme; + + /// See [PartI.itim]. static const itim = PartI.itim; + + /// See [PartI.itimTextTheme]. static const itimTextTheme = PartI.itimTextTheme; + + /// See [PartJ.jacquard12]. static const jacquard12 = PartJ.jacquard12; + + /// See [PartJ.jacquard12TextTheme]. static const jacquard12TextTheme = PartJ.jacquard12TextTheme; + + /// See [PartJ.jacquard12Charted]. static const jacquard12Charted = PartJ.jacquard12Charted; + + /// See [PartJ.jacquard12ChartedTextTheme]. static const jacquard12ChartedTextTheme = PartJ.jacquard12ChartedTextTheme; + + /// See [PartJ.jacquard24]. static const jacquard24 = PartJ.jacquard24; + + /// See [PartJ.jacquard24TextTheme]. static const jacquard24TextTheme = PartJ.jacquard24TextTheme; + + /// See [PartJ.jacquard24Charted]. static const jacquard24Charted = PartJ.jacquard24Charted; + + /// See [PartJ.jacquard24ChartedTextTheme]. static const jacquard24ChartedTextTheme = PartJ.jacquard24ChartedTextTheme; + + /// See [PartJ.jacquardaBastarda9]. static const jacquardaBastarda9 = PartJ.jacquardaBastarda9; + + /// See [PartJ.jacquardaBastarda9TextTheme]. static const jacquardaBastarda9TextTheme = PartJ.jacquardaBastarda9TextTheme; + + /// See [PartJ.jacquardaBastarda9Charted]. static const jacquardaBastarda9Charted = PartJ.jacquardaBastarda9Charted; + + /// See [PartJ.jacquardaBastarda9ChartedTextTheme]. static const jacquardaBastarda9ChartedTextTheme = PartJ.jacquardaBastarda9ChartedTextTheme; + + /// See [PartJ.jacquesFrancois]. static const jacquesFrancois = PartJ.jacquesFrancois; + + /// See [PartJ.jacquesFrancoisTextTheme]. static const jacquesFrancoisTextTheme = PartJ.jacquesFrancoisTextTheme; + + /// See [PartJ.jacquesFrancoisShadow]. static const jacquesFrancoisShadow = PartJ.jacquesFrancoisShadow; + + /// See [PartJ.jacquesFrancoisShadowTextTheme]. static const jacquesFrancoisShadowTextTheme = PartJ.jacquesFrancoisShadowTextTheme; + + /// See [PartJ.jaini]. static const jaini = PartJ.jaini; + + /// See [PartJ.jainiTextTheme]. static const jainiTextTheme = PartJ.jainiTextTheme; + + /// See [PartJ.jainiPurva]. static const jainiPurva = PartJ.jainiPurva; + + /// See [PartJ.jainiPurvaTextTheme]. static const jainiPurvaTextTheme = PartJ.jainiPurvaTextTheme; + + /// See [PartJ.jaldi]. static const jaldi = PartJ.jaldi; + + /// See [PartJ.jaldiTextTheme]. static const jaldiTextTheme = PartJ.jaldiTextTheme; + + /// See [PartJ.jaro]. static const jaro = PartJ.jaro; + + /// See [PartJ.jaroTextTheme]. static const jaroTextTheme = PartJ.jaroTextTheme; + + /// See [PartJ.jersey10]. static const jersey10 = PartJ.jersey10; + + /// See [PartJ.jersey10TextTheme]. static const jersey10TextTheme = PartJ.jersey10TextTheme; + + /// See [PartJ.jersey10Charted]. static const jersey10Charted = PartJ.jersey10Charted; + + /// See [PartJ.jersey10ChartedTextTheme]. static const jersey10ChartedTextTheme = PartJ.jersey10ChartedTextTheme; + + /// See [PartJ.jersey15]. static const jersey15 = PartJ.jersey15; + + /// See [PartJ.jersey15TextTheme]. static const jersey15TextTheme = PartJ.jersey15TextTheme; + + /// See [PartJ.jersey15Charted]. static const jersey15Charted = PartJ.jersey15Charted; + + /// See [PartJ.jersey15ChartedTextTheme]. static const jersey15ChartedTextTheme = PartJ.jersey15ChartedTextTheme; + + /// See [PartJ.jersey20]. static const jersey20 = PartJ.jersey20; + + /// See [PartJ.jersey20TextTheme]. static const jersey20TextTheme = PartJ.jersey20TextTheme; + + /// See [PartJ.jersey20Charted]. static const jersey20Charted = PartJ.jersey20Charted; + + /// See [PartJ.jersey20ChartedTextTheme]. static const jersey20ChartedTextTheme = PartJ.jersey20ChartedTextTheme; + + /// See [PartJ.jersey25]. static const jersey25 = PartJ.jersey25; + + /// See [PartJ.jersey25TextTheme]. static const jersey25TextTheme = PartJ.jersey25TextTheme; + + /// See [PartJ.jersey25Charted]. static const jersey25Charted = PartJ.jersey25Charted; + + /// See [PartJ.jersey25ChartedTextTheme]. static const jersey25ChartedTextTheme = PartJ.jersey25ChartedTextTheme; + + /// See [PartJ.jetBrainsMono]. static const jetBrainsMono = PartJ.jetBrainsMono; + + /// See [PartJ.jetBrainsMonoTextTheme]. static const jetBrainsMonoTextTheme = PartJ.jetBrainsMonoTextTheme; + + /// See [PartJ.jimNightshade]. static const jimNightshade = PartJ.jimNightshade; + + /// See [PartJ.jimNightshadeTextTheme]. static const jimNightshadeTextTheme = PartJ.jimNightshadeTextTheme; + + /// See [PartJ.joan]. static const joan = PartJ.joan; + + /// See [PartJ.joanTextTheme]. static const joanTextTheme = PartJ.joanTextTheme; + + /// See [PartJ.jockeyOne]. static const jockeyOne = PartJ.jockeyOne; + + /// See [PartJ.jockeyOneTextTheme]. static const jockeyOneTextTheme = PartJ.jockeyOneTextTheme; + + /// See [PartJ.jollyLodger]. static const jollyLodger = PartJ.jollyLodger; + + /// See [PartJ.jollyLodgerTextTheme]. static const jollyLodgerTextTheme = PartJ.jollyLodgerTextTheme; + + /// See [PartJ.jomhuria]. static const jomhuria = PartJ.jomhuria; + + /// See [PartJ.jomhuriaTextTheme]. static const jomhuriaTextTheme = PartJ.jomhuriaTextTheme; + + /// See [PartJ.jomolhari]. static const jomolhari = PartJ.jomolhari; + + /// See [PartJ.jomolhariTextTheme]. static const jomolhariTextTheme = PartJ.jomolhariTextTheme; + + /// See [PartJ.josefinSans]. static const josefinSans = PartJ.josefinSans; + + /// See [PartJ.josefinSansTextTheme]. static const josefinSansTextTheme = PartJ.josefinSansTextTheme; + + /// See [PartJ.josefinSlab]. static const josefinSlab = PartJ.josefinSlab; + + /// See [PartJ.josefinSlabTextTheme]. static const josefinSlabTextTheme = PartJ.josefinSlabTextTheme; + + /// See [PartJ.jost]. static const jost = PartJ.jost; + + /// See [PartJ.jostTextTheme]. static const jostTextTheme = PartJ.jostTextTheme; + + /// See [PartJ.jotiOne]. static const jotiOne = PartJ.jotiOne; + + /// See [PartJ.jotiOneTextTheme]. static const jotiOneTextTheme = PartJ.jotiOneTextTheme; + + /// See [PartJ.jua]. static const jua = PartJ.jua; + + /// See [PartJ.juaTextTheme]. static const juaTextTheme = PartJ.juaTextTheme; + + /// See [PartJ.judson]. static const judson = PartJ.judson; + + /// See [PartJ.judsonTextTheme]. static const judsonTextTheme = PartJ.judsonTextTheme; + + /// See [PartJ.julee]. static const julee = PartJ.julee; + + /// See [PartJ.juleeTextTheme]. static const juleeTextTheme = PartJ.juleeTextTheme; + + /// See [PartJ.juliusSansOne]. static const juliusSansOne = PartJ.juliusSansOne; + + /// See [PartJ.juliusSansOneTextTheme]. static const juliusSansOneTextTheme = PartJ.juliusSansOneTextTheme; + + /// See [PartJ.junge]. static const junge = PartJ.junge; + + /// See [PartJ.jungeTextTheme]. static const jungeTextTheme = PartJ.jungeTextTheme; + + /// See [PartJ.jura]. static const jura = PartJ.jura; + + /// See [PartJ.juraTextTheme]. static const juraTextTheme = PartJ.juraTextTheme; + + /// See [PartJ.justAnotherHand]. static const justAnotherHand = PartJ.justAnotherHand; + + /// See [PartJ.justAnotherHandTextTheme]. static const justAnotherHandTextTheme = PartJ.justAnotherHandTextTheme; + + /// See [PartJ.justMeAgainDownHere]. static const justMeAgainDownHere = PartJ.justMeAgainDownHere; + + /// See [PartJ.justMeAgainDownHereTextTheme]. static const justMeAgainDownHereTextTheme = PartJ.justMeAgainDownHereTextTheme; + + /// See [PartK.k2d]. static const k2d = PartK.k2d; + + /// See [PartK.k2dTextTheme]. static const k2dTextTheme = PartK.k2dTextTheme; + + /// See [PartK.kablammo]. static const kablammo = PartK.kablammo; + + /// See [PartK.kablammoTextTheme]. static const kablammoTextTheme = PartK.kablammoTextTheme; + + /// See [PartK.kadwa]. static const kadwa = PartK.kadwa; + + /// See [PartK.kadwaTextTheme]. static const kadwaTextTheme = PartK.kadwaTextTheme; + + /// See [PartK.kaiseiDecol]. static const kaiseiDecol = PartK.kaiseiDecol; + + /// See [PartK.kaiseiDecolTextTheme]. static const kaiseiDecolTextTheme = PartK.kaiseiDecolTextTheme; + + /// See [PartK.kaiseiHarunoUmi]. static const kaiseiHarunoUmi = PartK.kaiseiHarunoUmi; + + /// See [PartK.kaiseiHarunoUmiTextTheme]. static const kaiseiHarunoUmiTextTheme = PartK.kaiseiHarunoUmiTextTheme; + + /// See [PartK.kaiseiOpti]. static const kaiseiOpti = PartK.kaiseiOpti; + + /// See [PartK.kaiseiOptiTextTheme]. static const kaiseiOptiTextTheme = PartK.kaiseiOptiTextTheme; + + /// See [PartK.kaiseiTokumin]. static const kaiseiTokumin = PartK.kaiseiTokumin; + + /// See [PartK.kaiseiTokuminTextTheme]. static const kaiseiTokuminTextTheme = PartK.kaiseiTokuminTextTheme; + + /// See [PartK.kalam]. static const kalam = PartK.kalam; + + /// See [PartK.kalamTextTheme]. static const kalamTextTheme = PartK.kalamTextTheme; + + /// See [PartK.kalnia]. static const kalnia = PartK.kalnia; + + /// See [PartK.kalniaTextTheme]. static const kalniaTextTheme = PartK.kalniaTextTheme; + + /// See [PartK.kalniaGlaze]. static const kalniaGlaze = PartK.kalniaGlaze; + + /// See [PartK.kalniaGlazeTextTheme]. static const kalniaGlazeTextTheme = PartK.kalniaGlazeTextTheme; + + /// See [PartK.kameron]. static const kameron = PartK.kameron; + + /// See [PartK.kameronTextTheme]. static const kameronTextTheme = PartK.kameronTextTheme; + + /// See [PartK.kanchenjunga]. static const kanchenjunga = PartK.kanchenjunga; + + /// See [PartK.kanchenjungaTextTheme]. static const kanchenjungaTextTheme = PartK.kanchenjungaTextTheme; + + /// See [PartK.kanit]. static const kanit = PartK.kanit; + + /// See [PartK.kanitTextTheme]. static const kanitTextTheme = PartK.kanitTextTheme; + + /// See [PartK.kantumruyPro]. static const kantumruyPro = PartK.kantumruyPro; + + /// See [PartK.kantumruyProTextTheme]. static const kantumruyProTextTheme = PartK.kantumruyProTextTheme; + + /// See [PartK.kapakana]. static const kapakana = PartK.kapakana; + + /// See [PartK.kapakanaTextTheme]. static const kapakanaTextTheme = PartK.kapakanaTextTheme; + + /// See [PartK.karantina]. static const karantina = PartK.karantina; + + /// See [PartK.karantinaTextTheme]. static const karantinaTextTheme = PartK.karantinaTextTheme; + + /// See [PartK.karla]. static const karla = PartK.karla; + + /// See [PartK.karlaTextTheme]. static const karlaTextTheme = PartK.karlaTextTheme; + + /// See [PartK.karlaTamilInclined]. static const karlaTamilInclined = PartK.karlaTamilInclined; + + /// See [PartK.karlaTamilInclinedTextTheme]. static const karlaTamilInclinedTextTheme = PartK.karlaTamilInclinedTextTheme; + + /// See [PartK.karlaTamilUpright]. static const karlaTamilUpright = PartK.karlaTamilUpright; + + /// See [PartK.karlaTamilUprightTextTheme]. static const karlaTamilUprightTextTheme = PartK.karlaTamilUprightTextTheme; + + /// See [PartK.karma]. static const karma = PartK.karma; + + /// See [PartK.karmaTextTheme]. static const karmaTextTheme = PartK.karmaTextTheme; + + /// See [PartK.katibeh]. static const katibeh = PartK.katibeh; + + /// See [PartK.katibehTextTheme]. static const katibehTextTheme = PartK.katibehTextTheme; + + /// See [PartK.kaushanScript]. static const kaushanScript = PartK.kaushanScript; + + /// See [PartK.kaushanScriptTextTheme]. static const kaushanScriptTextTheme = PartK.kaushanScriptTextTheme; + + /// See [PartK.kavivanar]. static const kavivanar = PartK.kavivanar; + + /// See [PartK.kavivanarTextTheme]. static const kavivanarTextTheme = PartK.kavivanarTextTheme; + + /// See [PartK.kavoon]. static const kavoon = PartK.kavoon; + + /// See [PartK.kavoonTextTheme]. static const kavoonTextTheme = PartK.kavoonTextTheme; + + /// See [PartK.kayPhoDu]. static const kayPhoDu = PartK.kayPhoDu; + + /// See [PartK.kayPhoDuTextTheme]. static const kayPhoDuTextTheme = PartK.kayPhoDuTextTheme; + + /// See [PartK.kdamThmorPro]. static const kdamThmorPro = PartK.kdamThmorPro; + + /// See [PartK.kdamThmorProTextTheme]. static const kdamThmorProTextTheme = PartK.kdamThmorProTextTheme; + + /// See [PartK.keaniaOne]. static const keaniaOne = PartK.keaniaOne; + + /// See [PartK.keaniaOneTextTheme]. static const keaniaOneTextTheme = PartK.keaniaOneTextTheme; + + /// See [PartK.kellySlab]. static const kellySlab = PartK.kellySlab; + + /// See [PartK.kellySlabTextTheme]. static const kellySlabTextTheme = PartK.kellySlabTextTheme; + + /// See [PartK.kenia]. static const kenia = PartK.kenia; + + /// See [PartK.keniaTextTheme]. static const keniaTextTheme = PartK.keniaTextTheme; + + /// See [PartK.khand]. static const khand = PartK.khand; + + /// See [PartK.khandTextTheme]. static const khandTextTheme = PartK.khandTextTheme; + + /// See [PartK.khmer]. static const khmer = PartK.khmer; + + /// See [PartK.khmerTextTheme]. static const khmerTextTheme = PartK.khmerTextTheme; + + /// See [PartK.khula]. static const khula = PartK.khula; + + /// See [PartK.khulaTextTheme]. static const khulaTextTheme = PartK.khulaTextTheme; + + /// See [PartK.kings]. static const kings = PartK.kings; + + /// See [PartK.kingsTextTheme]. static const kingsTextTheme = PartK.kingsTextTheme; + + /// See [PartK.kirangHaerang]. static const kirangHaerang = PartK.kirangHaerang; + + /// See [PartK.kirangHaerangTextTheme]. static const kirangHaerangTextTheme = PartK.kirangHaerangTextTheme; + + /// See [PartK.kiteOne]. static const kiteOne = PartK.kiteOne; + + /// See [PartK.kiteOneTextTheme]. static const kiteOneTextTheme = PartK.kiteOneTextTheme; + + /// See [PartK.kiwiMaru]. static const kiwiMaru = PartK.kiwiMaru; + + /// See [PartK.kiwiMaruTextTheme]. static const kiwiMaruTextTheme = PartK.kiwiMaruTextTheme; + + /// See [PartK.kleeOne]. static const kleeOne = PartK.kleeOne; + + /// See [PartK.kleeOneTextTheme]. static const kleeOneTextTheme = PartK.kleeOneTextTheme; + + /// See [PartK.knewave]. static const knewave = PartK.knewave; + + /// See [PartK.knewaveTextTheme]. static const knewaveTextTheme = PartK.knewaveTextTheme; + + /// See [PartK.koHo]. static const koHo = PartK.koHo; + + /// See [PartK.koHoTextTheme]. static const koHoTextTheme = PartK.koHoTextTheme; + + /// See [PartK.kodchasan]. static const kodchasan = PartK.kodchasan; + + /// See [PartK.kodchasanTextTheme]. static const kodchasanTextTheme = PartK.kodchasanTextTheme; + + /// See [PartK.kodeMono]. static const kodeMono = PartK.kodeMono; + + /// See [PartK.kodeMonoTextTheme]. static const kodeMonoTextTheme = PartK.kodeMonoTextTheme; + + /// See [PartK.kohSantepheap]. static const kohSantepheap = PartK.kohSantepheap; + + /// See [PartK.kohSantepheapTextTheme]. static const kohSantepheapTextTheme = PartK.kohSantepheapTextTheme; + + /// See [PartK.kolkerBrush]. static const kolkerBrush = PartK.kolkerBrush; + + /// See [PartK.kolkerBrushTextTheme]. static const kolkerBrushTextTheme = PartK.kolkerBrushTextTheme; + + /// See [PartK.konkhmerSleokchher]. static const konkhmerSleokchher = PartK.konkhmerSleokchher; + + /// See [PartK.konkhmerSleokchherTextTheme]. static const konkhmerSleokchherTextTheme = PartK.konkhmerSleokchherTextTheme; + + /// See [PartK.kosugi]. static const kosugi = PartK.kosugi; + + /// See [PartK.kosugiTextTheme]. static const kosugiTextTheme = PartK.kosugiTextTheme; + + /// See [PartK.kosugiMaru]. static const kosugiMaru = PartK.kosugiMaru; + + /// See [PartK.kosugiMaruTextTheme]. static const kosugiMaruTextTheme = PartK.kosugiMaruTextTheme; + + /// See [PartK.kottaOne]. static const kottaOne = PartK.kottaOne; + + /// See [PartK.kottaOneTextTheme]. static const kottaOneTextTheme = PartK.kottaOneTextTheme; + + /// See [PartK.koulen]. static const koulen = PartK.koulen; + + /// See [PartK.koulenTextTheme]. static const koulenTextTheme = PartK.koulenTextTheme; + + /// See [PartK.kranky]. static const kranky = PartK.kranky; + + /// See [PartK.krankyTextTheme]. static const krankyTextTheme = PartK.krankyTextTheme; + + /// See [PartK.kreon]. static const kreon = PartK.kreon; + + /// See [PartK.kreonTextTheme]. static const kreonTextTheme = PartK.kreonTextTheme; + + /// See [PartK.kristi]. static const kristi = PartK.kristi; + + /// See [PartK.kristiTextTheme]. static const kristiTextTheme = PartK.kristiTextTheme; + + /// See [PartK.kronaOne]. static const kronaOne = PartK.kronaOne; + + /// See [PartK.kronaOneTextTheme]. static const kronaOneTextTheme = PartK.kronaOneTextTheme; + + /// See [PartK.krub]. static const krub = PartK.krub; + + /// See [PartK.krubTextTheme]. static const krubTextTheme = PartK.krubTextTheme; + + /// See [PartK.kufam]. static const kufam = PartK.kufam; + + /// See [PartK.kufamTextTheme]. static const kufamTextTheme = PartK.kufamTextTheme; + + /// See [PartK.kulimPark]. static const kulimPark = PartK.kulimPark; + + /// See [PartK.kulimParkTextTheme]. static const kulimParkTextTheme = PartK.kulimParkTextTheme; + + /// See [PartK.kumarOne]. static const kumarOne = PartK.kumarOne; + + /// See [PartK.kumarOneTextTheme]. static const kumarOneTextTheme = PartK.kumarOneTextTheme; + + /// See [PartK.kumarOneOutline]. static const kumarOneOutline = PartK.kumarOneOutline; + + /// See [PartK.kumarOneOutlineTextTheme]. static const kumarOneOutlineTextTheme = PartK.kumarOneOutlineTextTheme; + + /// See [PartK.kumbhSans]. static const kumbhSans = PartK.kumbhSans; + + /// See [PartK.kumbhSansTextTheme]. static const kumbhSansTextTheme = PartK.kumbhSansTextTheme; + + /// See [PartK.kurale]. static const kurale = PartK.kurale; + + /// See [PartK.kuraleTextTheme]. static const kuraleTextTheme = PartK.kuraleTextTheme; + + /// See [PartL.lxgwMarkerGothic]. static const lxgwMarkerGothic = PartL.lxgwMarkerGothic; + + /// See [PartL.lxgwMarkerGothicTextTheme]. static const lxgwMarkerGothicTextTheme = PartL.lxgwMarkerGothicTextTheme; + + /// See [PartL.lxgwWenKaiMonoTc]. static const lxgwWenKaiMonoTc = PartL.lxgwWenKaiMonoTc; + + /// See [PartL.lxgwWenKaiMonoTcTextTheme]. static const lxgwWenKaiMonoTcTextTheme = PartL.lxgwWenKaiMonoTcTextTheme; + + /// See [PartL.lxgwWenKaiTc]. static const lxgwWenKaiTc = PartL.lxgwWenKaiTc; + + /// See [PartL.lxgwWenKaiTcTextTheme]. static const lxgwWenKaiTcTextTheme = PartL.lxgwWenKaiTcTextTheme; + + /// See [PartL.laBelleAurore]. static const laBelleAurore = PartL.laBelleAurore; + + /// See [PartL.laBelleAuroreTextTheme]. static const laBelleAuroreTextTheme = PartL.laBelleAuroreTextTheme; + + /// See [PartL.labrada]. static const labrada = PartL.labrada; + + /// See [PartL.labradaTextTheme]. static const labradaTextTheme = PartL.labradaTextTheme; + + /// See [PartL.lacquer]. static const lacquer = PartL.lacquer; + + /// See [PartL.lacquerTextTheme]. static const lacquerTextTheme = PartL.lacquerTextTheme; + + /// See [PartL.laila]. static const laila = PartL.laila; + + /// See [PartL.lailaTextTheme]. static const lailaTextTheme = PartL.lailaTextTheme; + + /// See [PartL.lakkiReddy]. static const lakkiReddy = PartL.lakkiReddy; + + /// See [PartL.lakkiReddyTextTheme]. static const lakkiReddyTextTheme = PartL.lakkiReddyTextTheme; + + /// See [PartL.lalezar]. static const lalezar = PartL.lalezar; + + /// See [PartL.lalezarTextTheme]. static const lalezarTextTheme = PartL.lalezarTextTheme; + + /// See [PartL.lancelot]. static const lancelot = PartL.lancelot; + + /// See [PartL.lancelotTextTheme]. static const lancelotTextTheme = PartL.lancelotTextTheme; + + /// See [PartL.langar]. static const langar = PartL.langar; + + /// See [PartL.langarTextTheme]. static const langarTextTheme = PartL.langarTextTheme; + + /// See [PartL.lateef]. static const lateef = PartL.lateef; + + /// See [PartL.lateefTextTheme]. static const lateefTextTheme = PartL.lateefTextTheme; + + /// See [PartL.lato]. static const lato = PartL.lato; + + /// See [PartL.latoTextTheme]. static const latoTextTheme = PartL.latoTextTheme; + + /// See [PartL.lavishlyYours]. static const lavishlyYours = PartL.lavishlyYours; + + /// See [PartL.lavishlyYoursTextTheme]. static const lavishlyYoursTextTheme = PartL.lavishlyYoursTextTheme; + + /// See [PartL.leagueGothic]. static const leagueGothic = PartL.leagueGothic; + + /// See [PartL.leagueGothicTextTheme]. static const leagueGothicTextTheme = PartL.leagueGothicTextTheme; + + /// See [PartL.leagueScript]. static const leagueScript = PartL.leagueScript; + + /// See [PartL.leagueScriptTextTheme]. static const leagueScriptTextTheme = PartL.leagueScriptTextTheme; + + /// See [PartL.leagueSpartan]. static const leagueSpartan = PartL.leagueSpartan; + + /// See [PartL.leagueSpartanTextTheme]. static const leagueSpartanTextTheme = PartL.leagueSpartanTextTheme; + + /// See [PartL.leckerliOne]. static const leckerliOne = PartL.leckerliOne; + + /// See [PartL.leckerliOneTextTheme]. static const leckerliOneTextTheme = PartL.leckerliOneTextTheme; + + /// See [PartL.ledger]. static const ledger = PartL.ledger; + + /// See [PartL.ledgerTextTheme]. static const ledgerTextTheme = PartL.ledgerTextTheme; + + /// See [PartL.lekton]. static const lekton = PartL.lekton; + + /// See [PartL.lektonTextTheme]. static const lektonTextTheme = PartL.lektonTextTheme; + + /// See [PartL.lemon]. static const lemon = PartL.lemon; + + /// See [PartL.lemonTextTheme]. static const lemonTextTheme = PartL.lemonTextTheme; + + /// See [PartL.lemonada]. static const lemonada = PartL.lemonada; + + /// See [PartL.lemonadaTextTheme]. static const lemonadaTextTheme = PartL.lemonadaTextTheme; + + /// See [PartL.lexend]. static const lexend = PartL.lexend; + + /// See [PartL.lexendTextTheme]. static const lexendTextTheme = PartL.lexendTextTheme; + + /// See [PartL.lexendDeca]. static const lexendDeca = PartL.lexendDeca; + + /// See [PartL.lexendDecaTextTheme]. static const lexendDecaTextTheme = PartL.lexendDecaTextTheme; + + /// See [PartL.lexendExa]. static const lexendExa = PartL.lexendExa; + + /// See [PartL.lexendExaTextTheme]. static const lexendExaTextTheme = PartL.lexendExaTextTheme; + + /// See [PartL.lexendGiga]. static const lexendGiga = PartL.lexendGiga; + + /// See [PartL.lexendGigaTextTheme]. static const lexendGigaTextTheme = PartL.lexendGigaTextTheme; + + /// See [PartL.lexendMega]. static const lexendMega = PartL.lexendMega; + + /// See [PartL.lexendMegaTextTheme]. static const lexendMegaTextTheme = PartL.lexendMegaTextTheme; + + /// See [PartL.lexendPeta]. static const lexendPeta = PartL.lexendPeta; + + /// See [PartL.lexendPetaTextTheme]. static const lexendPetaTextTheme = PartL.lexendPetaTextTheme; + + /// See [PartL.lexendTera]. static const lexendTera = PartL.lexendTera; + + /// See [PartL.lexendTeraTextTheme]. static const lexendTeraTextTheme = PartL.lexendTeraTextTheme; + + /// See [PartL.lexendZetta]. static const lexendZetta = PartL.lexendZetta; + + /// See [PartL.lexendZettaTextTheme]. static const lexendZettaTextTheme = PartL.lexendZettaTextTheme; + + /// See [PartL.libertinusKeyboard]. static const libertinusKeyboard = PartL.libertinusKeyboard; + + /// See [PartL.libertinusKeyboardTextTheme]. static const libertinusKeyboardTextTheme = PartL.libertinusKeyboardTextTheme; + + /// See [PartL.libertinusMath]. static const libertinusMath = PartL.libertinusMath; + + /// See [PartL.libertinusMathTextTheme]. static const libertinusMathTextTheme = PartL.libertinusMathTextTheme; + + /// See [PartL.libertinusMono]. static const libertinusMono = PartL.libertinusMono; + + /// See [PartL.libertinusMonoTextTheme]. static const libertinusMonoTextTheme = PartL.libertinusMonoTextTheme; + + /// See [PartL.libertinusSans]. static const libertinusSans = PartL.libertinusSans; + + /// See [PartL.libertinusSansTextTheme]. static const libertinusSansTextTheme = PartL.libertinusSansTextTheme; + + /// See [PartL.libertinusSerif]. static const libertinusSerif = PartL.libertinusSerif; + + /// See [PartL.libertinusSerifTextTheme]. static const libertinusSerifTextTheme = PartL.libertinusSerifTextTheme; + + /// See [PartL.libertinusSerifDisplay]. static const libertinusSerifDisplay = PartL.libertinusSerifDisplay; + + /// See [PartL.libertinusSerifDisplayTextTheme]. static const libertinusSerifDisplayTextTheme = PartL.libertinusSerifDisplayTextTheme; + + /// See [PartL.libreBarcode128]. static const libreBarcode128 = PartL.libreBarcode128; + + /// See [PartL.libreBarcode128TextTheme]. static const libreBarcode128TextTheme = PartL.libreBarcode128TextTheme; + + /// See [PartL.libreBarcode128Text]. static const libreBarcode128Text = PartL.libreBarcode128Text; + + /// See [PartL.libreBarcode128TextTextTheme]. static const libreBarcode128TextTextTheme = PartL.libreBarcode128TextTextTheme; + + /// See [PartL.libreBarcode39]. static const libreBarcode39 = PartL.libreBarcode39; + + /// See [PartL.libreBarcode39TextTheme]. static const libreBarcode39TextTheme = PartL.libreBarcode39TextTheme; + + /// See [PartL.libreBarcode39Extended]. static const libreBarcode39Extended = PartL.libreBarcode39Extended; + + /// See [PartL.libreBarcode39ExtendedTextTheme]. static const libreBarcode39ExtendedTextTheme = PartL.libreBarcode39ExtendedTextTheme; + + /// See [PartL.libreBarcode39ExtendedText]. static const libreBarcode39ExtendedText = PartL.libreBarcode39ExtendedText; + + /// See [PartL.libreBarcode39ExtendedTextTextTheme]. static const libreBarcode39ExtendedTextTextTheme = PartL.libreBarcode39ExtendedTextTextTheme; + + /// See [PartL.libreBarcode39Text]. static const libreBarcode39Text = PartL.libreBarcode39Text; + + /// See [PartL.libreBarcode39TextTextTheme]. static const libreBarcode39TextTextTheme = PartL.libreBarcode39TextTextTheme; + + /// See [PartL.libreBarcodeEan13Text]. static const libreBarcodeEan13Text = PartL.libreBarcodeEan13Text; + + /// See [PartL.libreBarcodeEan13TextTextTheme]. static const libreBarcodeEan13TextTextTheme = PartL.libreBarcodeEan13TextTextTheme; + + /// See [PartL.libreBaskerville]. static const libreBaskerville = PartL.libreBaskerville; + + /// See [PartL.libreBaskervilleTextTheme]. static const libreBaskervilleTextTheme = PartL.libreBaskervilleTextTheme; + + /// See [PartL.libreBodoni]. static const libreBodoni = PartL.libreBodoni; + + /// See [PartL.libreBodoniTextTheme]. static const libreBodoniTextTheme = PartL.libreBodoniTextTheme; + + /// See [PartL.libreCaslonDisplay]. static const libreCaslonDisplay = PartL.libreCaslonDisplay; + + /// See [PartL.libreCaslonDisplayTextTheme]. static const libreCaslonDisplayTextTheme = PartL.libreCaslonDisplayTextTheme; + + /// See [PartL.libreCaslonText]. static const libreCaslonText = PartL.libreCaslonText; + + /// See [PartL.libreCaslonTextTextTheme]. static const libreCaslonTextTextTheme = PartL.libreCaslonTextTextTheme; + + /// See [PartL.libreFranklin]. static const libreFranklin = PartL.libreFranklin; + + /// See [PartL.libreFranklinTextTheme]. static const libreFranklinTextTheme = PartL.libreFranklinTextTheme; + + /// See [PartL.licorice]. static const licorice = PartL.licorice; + + /// See [PartL.licoriceTextTheme]. static const licoriceTextTheme = PartL.licoriceTextTheme; + + /// See [PartL.lifeSavers]. static const lifeSavers = PartL.lifeSavers; + + /// See [PartL.lifeSaversTextTheme]. static const lifeSaversTextTheme = PartL.lifeSaversTextTheme; + + /// See [PartL.lilitaOne]. static const lilitaOne = PartL.lilitaOne; + + /// See [PartL.lilitaOneTextTheme]. static const lilitaOneTextTheme = PartL.lilitaOneTextTheme; + + /// See [PartL.lilyScriptOne]. static const lilyScriptOne = PartL.lilyScriptOne; + + /// See [PartL.lilyScriptOneTextTheme]. static const lilyScriptOneTextTheme = PartL.lilyScriptOneTextTheme; + + /// See [PartL.limelight]. static const limelight = PartL.limelight; + + /// See [PartL.limelightTextTheme]. static const limelightTextTheme = PartL.limelightTextTheme; + + /// See [PartL.lindenHill]. static const lindenHill = PartL.lindenHill; + + /// See [PartL.lindenHillTextTheme]. static const lindenHillTextTheme = PartL.lindenHillTextTheme; + + /// See [PartL.linefont]. static const linefont = PartL.linefont; + + /// See [PartL.linefontTextTheme]. static const linefontTextTheme = PartL.linefontTextTheme; + + /// See [PartL.lisuBosa]. static const lisuBosa = PartL.lisuBosa; + + /// See [PartL.lisuBosaTextTheme]. static const lisuBosaTextTheme = PartL.lisuBosaTextTheme; + + /// See [PartL.liter]. static const liter = PartL.liter; + + /// See [PartL.literTextTheme]. static const literTextTheme = PartL.literTextTheme; + + /// See [PartL.literata]. static const literata = PartL.literata; + + /// See [PartL.literataTextTheme]. static const literataTextTheme = PartL.literataTextTheme; + + /// See [PartL.liuJianMaoCao]. static const liuJianMaoCao = PartL.liuJianMaoCao; + + /// See [PartL.liuJianMaoCaoTextTheme]. static const liuJianMaoCaoTextTheme = PartL.liuJianMaoCaoTextTheme; + + /// See [PartL.livvic]. static const livvic = PartL.livvic; + + /// See [PartL.livvicTextTheme]. static const livvicTextTheme = PartL.livvicTextTheme; + + /// See [PartL.lobster]. static const lobster = PartL.lobster; + + /// See [PartL.lobsterTextTheme]. static const lobsterTextTheme = PartL.lobsterTextTheme; + + /// See [PartL.lobsterTwo]. static const lobsterTwo = PartL.lobsterTwo; + + /// See [PartL.lobsterTwoTextTheme]. static const lobsterTwoTextTheme = PartL.lobsterTwoTextTheme; + + /// See [PartL.londrinaOutline]. static const londrinaOutline = PartL.londrinaOutline; + + /// See [PartL.londrinaOutlineTextTheme]. static const londrinaOutlineTextTheme = PartL.londrinaOutlineTextTheme; + + /// See [PartL.londrinaShadow]. static const londrinaShadow = PartL.londrinaShadow; + + /// See [PartL.londrinaShadowTextTheme]. static const londrinaShadowTextTheme = PartL.londrinaShadowTextTheme; + + /// See [PartL.londrinaSketch]. static const londrinaSketch = PartL.londrinaSketch; + + /// See [PartL.londrinaSketchTextTheme]. static const londrinaSketchTextTheme = PartL.londrinaSketchTextTheme; + + /// See [PartL.londrinaSolid]. static const londrinaSolid = PartL.londrinaSolid; + + /// See [PartL.londrinaSolidTextTheme]. static const londrinaSolidTextTheme = PartL.londrinaSolidTextTheme; + + /// See [PartL.longCang]. static const longCang = PartL.longCang; + + /// See [PartL.longCangTextTheme]. static const longCangTextTheme = PartL.longCangTextTheme; + + /// See [PartL.lora]. static const lora = PartL.lora; + + /// See [PartL.loraTextTheme]. static const loraTextTheme = PartL.loraTextTheme; + + /// See [PartL.loveLight]. static const loveLight = PartL.loveLight; + + /// See [PartL.loveLightTextTheme]. static const loveLightTextTheme = PartL.loveLightTextTheme; + + /// See [PartL.loveYaLikeASister]. static const loveYaLikeASister = PartL.loveYaLikeASister; + + /// See [PartL.loveYaLikeASisterTextTheme]. static const loveYaLikeASisterTextTheme = PartL.loveYaLikeASisterTextTheme; + + /// See [PartL.lovedByTheKing]. static const lovedByTheKing = PartL.lovedByTheKing; + + /// See [PartL.lovedByTheKingTextTheme]. static const lovedByTheKingTextTheme = PartL.lovedByTheKingTextTheme; + + /// See [PartL.loversQuarrel]. static const loversQuarrel = PartL.loversQuarrel; + + /// See [PartL.loversQuarrelTextTheme]. static const loversQuarrelTextTheme = PartL.loversQuarrelTextTheme; + + /// See [PartL.luckiestGuy]. static const luckiestGuy = PartL.luckiestGuy; + + /// See [PartL.luckiestGuyTextTheme]. static const luckiestGuyTextTheme = PartL.luckiestGuyTextTheme; + + /// See [PartL.lugrasimo]. static const lugrasimo = PartL.lugrasimo; + + /// See [PartL.lugrasimoTextTheme]. static const lugrasimoTextTheme = PartL.lugrasimoTextTheme; + + /// See [PartL.lumanosimo]. static const lumanosimo = PartL.lumanosimo; + + /// See [PartL.lumanosimoTextTheme]. static const lumanosimoTextTheme = PartL.lumanosimoTextTheme; + + /// See [PartL.lunasima]. static const lunasima = PartL.lunasima; + + /// See [PartL.lunasimaTextTheme]. static const lunasimaTextTheme = PartL.lunasimaTextTheme; + + /// See [PartL.lusitana]. static const lusitana = PartL.lusitana; + + /// See [PartL.lusitanaTextTheme]. static const lusitanaTextTheme = PartL.lusitanaTextTheme; + + /// See [PartL.lustria]. static const lustria = PartL.lustria; + + /// See [PartL.lustriaTextTheme]. static const lustriaTextTheme = PartL.lustriaTextTheme; + + /// See [PartL.luxuriousRoman]. static const luxuriousRoman = PartL.luxuriousRoman; + + /// See [PartL.luxuriousRomanTextTheme]. static const luxuriousRomanTextTheme = PartL.luxuriousRomanTextTheme; + + /// See [PartL.luxuriousScript]. static const luxuriousScript = PartL.luxuriousScript; + + /// See [PartL.luxuriousScriptTextTheme]. static const luxuriousScriptTextTheme = PartL.luxuriousScriptTextTheme; + + /// See [PartM.mPlus1]. static const mPlus1 = PartM.mPlus1; + + /// See [PartM.mPlus1TextTheme]. static const mPlus1TextTheme = PartM.mPlus1TextTheme; + + /// See [PartM.mPlus1Code]. static const mPlus1Code = PartM.mPlus1Code; + + /// See [PartM.mPlus1CodeTextTheme]. static const mPlus1CodeTextTheme = PartM.mPlus1CodeTextTheme; + + /// See [PartM.mPlus1p]. static const mPlus1p = PartM.mPlus1p; + + /// See [PartM.mPlus1pTextTheme]. static const mPlus1pTextTheme = PartM.mPlus1pTextTheme; + + /// See [PartM.mPlus2]. static const mPlus2 = PartM.mPlus2; + + /// See [PartM.mPlus2TextTheme]. static const mPlus2TextTheme = PartM.mPlus2TextTheme; + + /// See [PartM.mPlusCodeLatin]. static const mPlusCodeLatin = PartM.mPlusCodeLatin; + + /// See [PartM.mPlusCodeLatinTextTheme]. static const mPlusCodeLatinTextTheme = PartM.mPlusCodeLatinTextTheme; + + /// See [PartM.mPlusRounded1c]. static const mPlusRounded1c = PartM.mPlusRounded1c; + + /// See [PartM.mPlusRounded1cTextTheme]. static const mPlusRounded1cTextTheme = PartM.mPlusRounded1cTextTheme; + + /// See [PartM.maShanZheng]. static const maShanZheng = PartM.maShanZheng; + + /// See [PartM.maShanZhengTextTheme]. static const maShanZhengTextTheme = PartM.maShanZhengTextTheme; + + /// See [PartM.macondo]. static const macondo = PartM.macondo; + + /// See [PartM.macondoTextTheme]. static const macondoTextTheme = PartM.macondoTextTheme; + + /// See [PartM.macondoSwashCaps]. static const macondoSwashCaps = PartM.macondoSwashCaps; + + /// See [PartM.macondoSwashCapsTextTheme]. static const macondoSwashCapsTextTheme = PartM.macondoSwashCapsTextTheme; + + /// See [PartM.mada]. static const mada = PartM.mada; + + /// See [PartM.madaTextTheme]. static const madaTextTheme = PartM.madaTextTheme; + + /// See [PartM.madimiOne]. static const madimiOne = PartM.madimiOne; + + /// See [PartM.madimiOneTextTheme]. static const madimiOneTextTheme = PartM.madimiOneTextTheme; + + /// See [PartM.magra]. static const magra = PartM.magra; + + /// See [PartM.magraTextTheme]. static const magraTextTheme = PartM.magraTextTheme; + + /// See [PartM.maidenOrange]. static const maidenOrange = PartM.maidenOrange; + + /// See [PartM.maidenOrangeTextTheme]. static const maidenOrangeTextTheme = PartM.maidenOrangeTextTheme; + + /// See [PartM.maitree]. static const maitree = PartM.maitree; + + /// See [PartM.maitreeTextTheme]. static const maitreeTextTheme = PartM.maitreeTextTheme; + + /// See [PartM.majorMonoDisplay]. static const majorMonoDisplay = PartM.majorMonoDisplay; + + /// See [PartM.majorMonoDisplayTextTheme]. static const majorMonoDisplayTextTheme = PartM.majorMonoDisplayTextTheme; + + /// See [PartM.mako]. static const mako = PartM.mako; + + /// See [PartM.makoTextTheme]. static const makoTextTheme = PartM.makoTextTheme; + + /// See [PartM.mali]. static const mali = PartM.mali; + + /// See [PartM.maliTextTheme]. static const maliTextTheme = PartM.maliTextTheme; + + /// See [PartM.mallanna]. static const mallanna = PartM.mallanna; + + /// See [PartM.mallannaTextTheme]. static const mallannaTextTheme = PartM.mallannaTextTheme; + + /// See [PartM.maname]. static const maname = PartM.maname; + + /// See [PartM.manameTextTheme]. static const manameTextTheme = PartM.manameTextTheme; + + /// See [PartM.mandali]. static const mandali = PartM.mandali; + + /// See [PartM.mandaliTextTheme]. static const mandaliTextTheme = PartM.mandaliTextTheme; + + /// See [PartM.manjari]. static const manjari = PartM.manjari; + + /// See [PartM.manjariTextTheme]. static const manjariTextTheme = PartM.manjariTextTheme; + + /// See [PartM.manrope]. static const manrope = PartM.manrope; + + /// See [PartM.manropeTextTheme]. static const manropeTextTheme = PartM.manropeTextTheme; + + /// See [PartM.mansalva]. static const mansalva = PartM.mansalva; + + /// See [PartM.mansalvaTextTheme]. static const mansalvaTextTheme = PartM.mansalvaTextTheme; + + /// See [PartM.manuale]. static const manuale = PartM.manuale; + + /// See [PartM.manualeTextTheme]. static const manualeTextTheme = PartM.manualeTextTheme; + + /// See [PartM.manufacturingConsent]. static const manufacturingConsent = PartM.manufacturingConsent; + + /// See [PartM.manufacturingConsentTextTheme]. static const manufacturingConsentTextTheme = PartM.manufacturingConsentTextTheme; + + /// See [PartM.marcellus]. static const marcellus = PartM.marcellus; + + /// See [PartM.marcellusTextTheme]. static const marcellusTextTheme = PartM.marcellusTextTheme; + + /// See [PartM.marcellusSc]. static const marcellusSc = PartM.marcellusSc; + + /// See [PartM.marcellusScTextTheme]. static const marcellusScTextTheme = PartM.marcellusScTextTheme; + + /// See [PartM.marckScript]. static const marckScript = PartM.marckScript; + + /// See [PartM.marckScriptTextTheme]. static const marckScriptTextTheme = PartM.marckScriptTextTheme; + + /// See [PartM.margarine]. static const margarine = PartM.margarine; + + /// See [PartM.margarineTextTheme]. static const margarineTextTheme = PartM.margarineTextTheme; + + /// See [PartM.marhey]. static const marhey = PartM.marhey; + + /// See [PartM.marheyTextTheme]. static const marheyTextTheme = PartM.marheyTextTheme; + + /// See [PartM.markaziText]. static const markaziText = PartM.markaziText; + + /// See [PartM.markaziTextTextTheme]. static const markaziTextTextTheme = PartM.markaziTextTextTheme; + + /// See [PartM.markoOne]. static const markoOne = PartM.markoOne; + + /// See [PartM.markoOneTextTheme]. static const markoOneTextTheme = PartM.markoOneTextTheme; + + /// See [PartM.marmelad]. static const marmelad = PartM.marmelad; + + /// See [PartM.marmeladTextTheme]. static const marmeladTextTheme = PartM.marmeladTextTheme; + + /// See [PartM.martel]. static const martel = PartM.martel; + + /// See [PartM.martelTextTheme]. static const martelTextTheme = PartM.martelTextTheme; + + /// See [PartM.martelSans]. static const martelSans = PartM.martelSans; + + /// See [PartM.martelSansTextTheme]. static const martelSansTextTheme = PartM.martelSansTextTheme; + + /// See [PartM.martianMono]. static const martianMono = PartM.martianMono; + + /// See [PartM.martianMonoTextTheme]. static const martianMonoTextTheme = PartM.martianMonoTextTheme; + + /// See [PartM.marvel]. static const marvel = PartM.marvel; + + /// See [PartM.marvelTextTheme]. static const marvelTextTheme = PartM.marvelTextTheme; + + /// See [PartM.matangi]. static const matangi = PartM.matangi; + + /// See [PartM.matangiTextTheme]. static const matangiTextTheme = PartM.matangiTextTheme; + + /// See [PartM.mate]. static const mate = PartM.mate; + + /// See [PartM.mateTextTheme]. static const mateTextTheme = PartM.mateTextTheme; + + /// See [PartM.mateSc]. static const mateSc = PartM.mateSc; + + /// See [PartM.mateScTextTheme]. static const mateScTextTheme = PartM.mateScTextTheme; + + /// See [PartM.matemasie]. static const matemasie = PartM.matemasie; + + /// See [PartM.matemasieTextTheme]. static const matemasieTextTheme = PartM.matemasieTextTheme; + + /// See [PartM.mavenPro]. static const mavenPro = PartM.mavenPro; + + /// See [PartM.mavenProTextTheme]. static const mavenProTextTheme = PartM.mavenProTextTheme; + + /// See [PartM.mcLaren]. static const mcLaren = PartM.mcLaren; + + /// See [PartM.mcLarenTextTheme]. static const mcLarenTextTheme = PartM.mcLarenTextTheme; + + /// See [PartM.meaCulpa]. static const meaCulpa = PartM.meaCulpa; + + /// See [PartM.meaCulpaTextTheme]. static const meaCulpaTextTheme = PartM.meaCulpaTextTheme; + + /// See [PartM.meddon]. static const meddon = PartM.meddon; + + /// See [PartM.meddonTextTheme]. static const meddonTextTheme = PartM.meddonTextTheme; + + /// See [PartM.medievalSharp]. static const medievalSharp = PartM.medievalSharp; + + /// See [PartM.medievalSharpTextTheme]. static const medievalSharpTextTheme = PartM.medievalSharpTextTheme; + + /// See [PartM.medulaOne]. static const medulaOne = PartM.medulaOne; + + /// See [PartM.medulaOneTextTheme]. static const medulaOneTextTheme = PartM.medulaOneTextTheme; + + /// See [PartM.meeraInimai]. static const meeraInimai = PartM.meeraInimai; + + /// See [PartM.meeraInimaiTextTheme]. static const meeraInimaiTextTheme = PartM.meeraInimaiTextTheme; + + /// See [PartM.megrim]. static const megrim = PartM.megrim; + + /// See [PartM.megrimTextTheme]. static const megrimTextTheme = PartM.megrimTextTheme; + + /// See [PartM.meieScript]. static const meieScript = PartM.meieScript; + + /// See [PartM.meieScriptTextTheme]. static const meieScriptTextTheme = PartM.meieScriptTextTheme; + + /// See [PartM.menbere]. static const menbere = PartM.menbere; + + /// See [PartM.menbereTextTheme]. static const menbereTextTheme = PartM.menbereTextTheme; + + /// See [PartM.meowScript]. static const meowScript = PartM.meowScript; + + /// See [PartM.meowScriptTextTheme]. static const meowScriptTextTheme = PartM.meowScriptTextTheme; + + /// See [PartM.merienda]. static const merienda = PartM.merienda; + + /// See [PartM.meriendaTextTheme]. static const meriendaTextTheme = PartM.meriendaTextTheme; + + /// See [PartM.merriweather]. static const merriweather = PartM.merriweather; + + /// See [PartM.merriweatherTextTheme]. static const merriweatherTextTheme = PartM.merriweatherTextTheme; + + /// See [PartM.merriweatherSans]. static const merriweatherSans = PartM.merriweatherSans; + + /// See [PartM.merriweatherSansTextTheme]. static const merriweatherSansTextTheme = PartM.merriweatherSansTextTheme; + + /// See [PartM.metal]. static const metal = PartM.metal; + + /// See [PartM.metalTextTheme]. static const metalTextTheme = PartM.metalTextTheme; + + /// See [PartM.metalMania]. static const metalMania = PartM.metalMania; + + /// See [PartM.metalManiaTextTheme]. static const metalManiaTextTheme = PartM.metalManiaTextTheme; + + /// See [PartM.metamorphous]. static const metamorphous = PartM.metamorphous; + + /// See [PartM.metamorphousTextTheme]. static const metamorphousTextTheme = PartM.metamorphousTextTheme; + + /// See [PartM.metrophobic]. static const metrophobic = PartM.metrophobic; + + /// See [PartM.metrophobicTextTheme]. static const metrophobicTextTheme = PartM.metrophobicTextTheme; + + /// See [PartM.michroma]. static const michroma = PartM.michroma; + + /// See [PartM.michromaTextTheme]. static const michromaTextTheme = PartM.michromaTextTheme; + + /// See [PartM.micro5]. static const micro5 = PartM.micro5; + + /// See [PartM.micro5TextTheme]. static const micro5TextTheme = PartM.micro5TextTheme; + + /// See [PartM.micro5Charted]. static const micro5Charted = PartM.micro5Charted; + + /// See [PartM.micro5ChartedTextTheme]. static const micro5ChartedTextTheme = PartM.micro5ChartedTextTheme; + + /// See [PartM.milonga]. static const milonga = PartM.milonga; + + /// See [PartM.milongaTextTheme]. static const milongaTextTheme = PartM.milongaTextTheme; + + /// See [PartM.miltonian]. static const miltonian = PartM.miltonian; + + /// See [PartM.miltonianTextTheme]. static const miltonianTextTheme = PartM.miltonianTextTheme; + + /// See [PartM.miltonianTattoo]. static const miltonianTattoo = PartM.miltonianTattoo; + + /// See [PartM.miltonianTattooTextTheme]. static const miltonianTattooTextTheme = PartM.miltonianTattooTextTheme; + + /// See [PartM.mina]. static const mina = PartM.mina; + + /// See [PartM.minaTextTheme]. static const minaTextTheme = PartM.minaTextTheme; + + /// See [PartM.mingzat]. static const mingzat = PartM.mingzat; + + /// See [PartM.mingzatTextTheme]. static const mingzatTextTheme = PartM.mingzatTextTheme; + + /// See [PartM.miniver]. static const miniver = PartM.miniver; + + /// See [PartM.miniverTextTheme]. static const miniverTextTheme = PartM.miniverTextTheme; + + /// See [PartM.miriamLibre]. static const miriamLibre = PartM.miriamLibre; + + /// See [PartM.miriamLibreTextTheme]. static const miriamLibreTextTheme = PartM.miriamLibreTextTheme; + + /// See [PartM.mirza]. static const mirza = PartM.mirza; + + /// See [PartM.mirzaTextTheme]. static const mirzaTextTheme = PartM.mirzaTextTheme; + + /// See [PartM.missFajardose]. static const missFajardose = PartM.missFajardose; + + /// See [PartM.missFajardoseTextTheme]. static const missFajardoseTextTheme = PartM.missFajardoseTextTheme; + + /// See [PartM.mitr]. static const mitr = PartM.mitr; + + /// See [PartM.mitrTextTheme]. static const mitrTextTheme = PartM.mitrTextTheme; + + /// See [PartM.mochiyPopOne]. static const mochiyPopOne = PartM.mochiyPopOne; + + /// See [PartM.mochiyPopOneTextTheme]. static const mochiyPopOneTextTheme = PartM.mochiyPopOneTextTheme; + + /// See [PartM.mochiyPopPOne]. static const mochiyPopPOne = PartM.mochiyPopPOne; + + /// See [PartM.mochiyPopPOneTextTheme]. static const mochiyPopPOneTextTheme = PartM.mochiyPopPOneTextTheme; + + /// See [PartM.modak]. static const modak = PartM.modak; + + /// See [PartM.modakTextTheme]. static const modakTextTheme = PartM.modakTextTheme; + + /// See [PartM.modernAntiqua]. static const modernAntiqua = PartM.modernAntiqua; + + /// See [PartM.modernAntiquaTextTheme]. static const modernAntiquaTextTheme = PartM.modernAntiquaTextTheme; + + /// See [PartM.moderustic]. static const moderustic = PartM.moderustic; + + /// See [PartM.moderusticTextTheme]. static const moderusticTextTheme = PartM.moderusticTextTheme; + + /// See [PartM.mogra]. static const mogra = PartM.mogra; + + /// See [PartM.mograTextTheme]. static const mograTextTheme = PartM.mograTextTheme; + + /// See [PartM.mohave]. static const mohave = PartM.mohave; + + /// See [PartM.mohaveTextTheme]. static const mohaveTextTheme = PartM.mohaveTextTheme; + + /// See [PartM.moiraiOne]. static const moiraiOne = PartM.moiraiOne; + + /// See [PartM.moiraiOneTextTheme]. static const moiraiOneTextTheme = PartM.moiraiOneTextTheme; + + /// See [PartM.molengo]. static const molengo = PartM.molengo; + + /// See [PartM.molengoTextTheme]. static const molengoTextTheme = PartM.molengoTextTheme; + + /// See [PartM.molle]. static const molle = PartM.molle; + + /// See [PartM.molleTextTheme]. static const molleTextTheme = PartM.molleTextTheme; + + /// See [PartM.monaSans]. static const monaSans = PartM.monaSans; + + /// See [PartM.monaSansTextTheme]. static const monaSansTextTheme = PartM.monaSansTextTheme; + + /// See [PartM.monda]. static const monda = PartM.monda; + + /// See [PartM.mondaTextTheme]. static const mondaTextTheme = PartM.mondaTextTheme; + + /// See [PartM.monofett]. static const monofett = PartM.monofett; + + /// See [PartM.monofettTextTheme]. static const monofettTextTheme = PartM.monofettTextTheme; + + /// See [PartM.monomakh]. static const monomakh = PartM.monomakh; + + /// See [PartM.monomakhTextTheme]. static const monomakhTextTheme = PartM.monomakhTextTheme; + + /// See [PartM.monomaniacOne]. static const monomaniacOne = PartM.monomaniacOne; + + /// See [PartM.monomaniacOneTextTheme]. static const monomaniacOneTextTheme = PartM.monomaniacOneTextTheme; + + /// See [PartM.monoton]. static const monoton = PartM.monoton; + + /// See [PartM.monotonTextTheme]. static const monotonTextTheme = PartM.monotonTextTheme; + + /// See [PartM.monsieurLaDoulaise]. static const monsieurLaDoulaise = PartM.monsieurLaDoulaise; + + /// See [PartM.monsieurLaDoulaiseTextTheme]. static const monsieurLaDoulaiseTextTheme = PartM.monsieurLaDoulaiseTextTheme; + + /// See [PartM.montaga]. static const montaga = PartM.montaga; + + /// See [PartM.montagaTextTheme]. static const montagaTextTheme = PartM.montagaTextTheme; + + /// See [PartM.montaguSlab]. static const montaguSlab = PartM.montaguSlab; + + /// See [PartM.montaguSlabTextTheme]. static const montaguSlabTextTheme = PartM.montaguSlabTextTheme; + + /// See [PartM.monteCarlo]. static const monteCarlo = PartM.monteCarlo; + + /// See [PartM.monteCarloTextTheme]. static const monteCarloTextTheme = PartM.monteCarloTextTheme; + + /// See [PartM.montez]. static const montez = PartM.montez; + + /// See [PartM.montezTextTheme]. static const montezTextTheme = PartM.montezTextTheme; + + /// See [PartM.montserrat]. static const montserrat = PartM.montserrat; + + /// See [PartM.montserratTextTheme]. static const montserratTextTheme = PartM.montserratTextTheme; + + /// See [PartM.montserratAlternates]. static const montserratAlternates = PartM.montserratAlternates; + + /// See [PartM.montserratAlternatesTextTheme]. static const montserratAlternatesTextTheme = PartM.montserratAlternatesTextTheme; + + /// See [PartM.montserratUnderline]. static const montserratUnderline = PartM.montserratUnderline; + + /// See [PartM.montserratUnderlineTextTheme]. static const montserratUnderlineTextTheme = PartM.montserratUnderlineTextTheme; + + /// See [PartM.mooLahLah]. static const mooLahLah = PartM.mooLahLah; + + /// See [PartM.mooLahLahTextTheme]. static const mooLahLahTextTheme = PartM.mooLahLahTextTheme; + + /// See [PartM.mooli]. static const mooli = PartM.mooli; + + /// See [PartM.mooliTextTheme]. static const mooliTextTheme = PartM.mooliTextTheme; + + /// See [PartM.moonDance]. static const moonDance = PartM.moonDance; + + /// See [PartM.moonDanceTextTheme]. static const moonDanceTextTheme = PartM.moonDanceTextTheme; + + /// See [PartM.moul]. static const moul = PartM.moul; + + /// See [PartM.moulTextTheme]. static const moulTextTheme = PartM.moulTextTheme; + + /// See [PartM.moulpali]. static const moulpali = PartM.moulpali; + + /// See [PartM.moulpaliTextTheme]. static const moulpaliTextTheme = PartM.moulpaliTextTheme; + + /// See [PartM.mountainsOfChristmas]. static const mountainsOfChristmas = PartM.mountainsOfChristmas; + + /// See [PartM.mountainsOfChristmasTextTheme]. static const mountainsOfChristmasTextTheme = PartM.mountainsOfChristmasTextTheme; + + /// See [PartM.mouseMemoirs]. static const mouseMemoirs = PartM.mouseMemoirs; + + /// See [PartM.mouseMemoirsTextTheme]. static const mouseMemoirsTextTheme = PartM.mouseMemoirsTextTheme; + + /// See [PartM.mozillaHeadline]. static const mozillaHeadline = PartM.mozillaHeadline; + + /// See [PartM.mozillaHeadlineTextTheme]. static const mozillaHeadlineTextTheme = PartM.mozillaHeadlineTextTheme; + + /// See [PartM.mozillaText]. static const mozillaText = PartM.mozillaText; + + /// See [PartM.mozillaTextTextTheme]. static const mozillaTextTextTheme = PartM.mozillaTextTextTheme; + + /// See [PartM.mrBedfort]. static const mrBedfort = PartM.mrBedfort; + + /// See [PartM.mrBedfortTextTheme]. static const mrBedfortTextTheme = PartM.mrBedfortTextTheme; + + /// See [PartM.mrDafoe]. static const mrDafoe = PartM.mrDafoe; + + /// See [PartM.mrDafoeTextTheme]. static const mrDafoeTextTheme = PartM.mrDafoeTextTheme; + + /// See [PartM.mrDeHaviland]. static const mrDeHaviland = PartM.mrDeHaviland; + + /// See [PartM.mrDeHavilandTextTheme]. static const mrDeHavilandTextTheme = PartM.mrDeHavilandTextTheme; + + /// See [PartM.mrsSaintDelafield]. static const mrsSaintDelafield = PartM.mrsSaintDelafield; + + /// See [PartM.mrsSaintDelafieldTextTheme]. static const mrsSaintDelafieldTextTheme = PartM.mrsSaintDelafieldTextTheme; + + /// See [PartM.mrsSheppards]. static const mrsSheppards = PartM.mrsSheppards; + + /// See [PartM.mrsSheppardsTextTheme]. static const mrsSheppardsTextTheme = PartM.mrsSheppardsTextTheme; + + /// See [PartM.msMadi]. static const msMadi = PartM.msMadi; + + /// See [PartM.msMadiTextTheme]. static const msMadiTextTheme = PartM.msMadiTextTheme; + + /// See [PartM.mukta]. static const mukta = PartM.mukta; + + /// See [PartM.muktaTextTheme]. static const muktaTextTheme = PartM.muktaTextTheme; + + /// See [PartM.muktaMahee]. static const muktaMahee = PartM.muktaMahee; + + /// See [PartM.muktaMaheeTextTheme]. static const muktaMaheeTextTheme = PartM.muktaMaheeTextTheme; + + /// See [PartM.muktaMalar]. static const muktaMalar = PartM.muktaMalar; + + /// See [PartM.muktaMalarTextTheme]. static const muktaMalarTextTheme = PartM.muktaMalarTextTheme; + + /// See [PartM.muktaVaani]. static const muktaVaani = PartM.muktaVaani; + + /// See [PartM.muktaVaaniTextTheme]. static const muktaVaaniTextTheme = PartM.muktaVaaniTextTheme; + + /// See [PartM.mulish]. static const mulish = PartM.mulish; + + /// See [PartM.mulishTextTheme]. static const mulishTextTheme = PartM.mulishTextTheme; + + /// See [PartM.murecho]. static const murecho = PartM.murecho; + + /// See [PartM.murechoTextTheme]. static const murechoTextTheme = PartM.murechoTextTheme; + + /// See [PartM.museoModerno]. static const museoModerno = PartM.museoModerno; + + /// See [PartM.museoModernoTextTheme]. static const museoModernoTextTheme = PartM.museoModernoTextTheme; + + /// See [PartM.mySoul]. static const mySoul = PartM.mySoul; + + /// See [PartM.mySoulTextTheme]. static const mySoulTextTheme = PartM.mySoulTextTheme; + + /// See [PartM.mynerve]. static const mynerve = PartM.mynerve; + + /// See [PartM.mynerveTextTheme]. static const mynerveTextTheme = PartM.mynerveTextTheme; + + /// See [PartM.mysteryQuest]. static const mysteryQuest = PartM.mysteryQuest; + + /// See [PartM.mysteryQuestTextTheme]. static const mysteryQuestTextTheme = PartM.mysteryQuestTextTheme; + + /// See [PartN.ntr]. static const ntr = PartN.ntr; + + /// See [PartN.ntrTextTheme]. static const ntrTextTheme = PartN.ntrTextTheme; + + /// See [PartN.nabla]. static const nabla = PartN.nabla; + + /// See [PartN.nablaTextTheme]. static const nablaTextTheme = PartN.nablaTextTheme; + + /// See [PartN.namdhinggo]. static const namdhinggo = PartN.namdhinggo; + + /// See [PartN.namdhinggoTextTheme]. static const namdhinggoTextTheme = PartN.namdhinggoTextTheme; + + /// See [PartN.nanumBrushScript]. static const nanumBrushScript = PartN.nanumBrushScript; + + /// See [PartN.nanumBrushScriptTextTheme]. static const nanumBrushScriptTextTheme = PartN.nanumBrushScriptTextTheme; + + /// See [PartN.nanumGothic]. static const nanumGothic = PartN.nanumGothic; + + /// See [PartN.nanumGothicTextTheme]. static const nanumGothicTextTheme = PartN.nanumGothicTextTheme; + + /// See [PartN.nanumGothicCoding]. static const nanumGothicCoding = PartN.nanumGothicCoding; + + /// See [PartN.nanumGothicCodingTextTheme]. static const nanumGothicCodingTextTheme = PartN.nanumGothicCodingTextTheme; + + /// See [PartN.nanumMyeongjo]. static const nanumMyeongjo = PartN.nanumMyeongjo; + + /// See [PartN.nanumMyeongjoTextTheme]. static const nanumMyeongjoTextTheme = PartN.nanumMyeongjoTextTheme; + + /// See [PartN.nanumPenScript]. static const nanumPenScript = PartN.nanumPenScript; + + /// See [PartN.nanumPenScriptTextTheme]. static const nanumPenScriptTextTheme = PartN.nanumPenScriptTextTheme; + + /// See [PartN.narnoor]. static const narnoor = PartN.narnoor; + + /// See [PartN.narnoorTextTheme]. static const narnoorTextTheme = PartN.narnoorTextTheme; + + /// See [PartN.nataSans]. static const nataSans = PartN.nataSans; + + /// See [PartN.nataSansTextTheme]. static const nataSansTextTheme = PartN.nataSansTextTheme; + + /// See [PartN.nationalPark]. static const nationalPark = PartN.nationalPark; + + /// See [PartN.nationalParkTextTheme]. static const nationalParkTextTheme = PartN.nationalParkTextTheme; + + /// See [PartN.neonderthaw]. static const neonderthaw = PartN.neonderthaw; + + /// See [PartN.neonderthawTextTheme]. static const neonderthawTextTheme = PartN.neonderthawTextTheme; + + /// See [PartN.nerkoOne]. static const nerkoOne = PartN.nerkoOne; + + /// See [PartN.nerkoOneTextTheme]. static const nerkoOneTextTheme = PartN.nerkoOneTextTheme; + + /// See [PartN.neucha]. static const neucha = PartN.neucha; + + /// See [PartN.neuchaTextTheme]. static const neuchaTextTheme = PartN.neuchaTextTheme; + + /// See [PartN.neuton]. static const neuton = PartN.neuton; + + /// See [PartN.neutonTextTheme]. static const neutonTextTheme = PartN.neutonTextTheme; + + /// See [PartN.newAmsterdam]. static const newAmsterdam = PartN.newAmsterdam; + + /// See [PartN.newAmsterdamTextTheme]. static const newAmsterdamTextTheme = PartN.newAmsterdamTextTheme; + + /// See [PartN.newRocker]. static const newRocker = PartN.newRocker; + + /// See [PartN.newRockerTextTheme]. static const newRockerTextTheme = PartN.newRockerTextTheme; + + /// See [PartN.newTegomin]. static const newTegomin = PartN.newTegomin; + + /// See [PartN.newTegominTextTheme]. static const newTegominTextTheme = PartN.newTegominTextTheme; + + /// See [PartN.newsCycle]. static const newsCycle = PartN.newsCycle; + + /// See [PartN.newsCycleTextTheme]. static const newsCycleTextTheme = PartN.newsCycleTextTheme; + + /// See [PartN.newsreader]. static const newsreader = PartN.newsreader; + + /// See [PartN.newsreaderTextTheme]. static const newsreaderTextTheme = PartN.newsreaderTextTheme; + + /// See [PartN.niconne]. static const niconne = PartN.niconne; + + /// See [PartN.niconneTextTheme]. static const niconneTextTheme = PartN.niconneTextTheme; + + /// See [PartN.niramit]. static const niramit = PartN.niramit; + + /// See [PartN.niramitTextTheme]. static const niramitTextTheme = PartN.niramitTextTheme; + + /// See [PartN.nixieOne]. static const nixieOne = PartN.nixieOne; + + /// See [PartN.nixieOneTextTheme]. static const nixieOneTextTheme = PartN.nixieOneTextTheme; + + /// See [PartN.nobile]. static const nobile = PartN.nobile; + + /// See [PartN.nobileTextTheme]. static const nobileTextTheme = PartN.nobileTextTheme; + + /// See [PartN.nokora]. static const nokora = PartN.nokora; + + /// See [PartN.nokoraTextTheme]. static const nokoraTextTheme = PartN.nokoraTextTheme; + + /// See [PartN.norican]. static const norican = PartN.norican; + + /// See [PartN.noricanTextTheme]. static const noricanTextTheme = PartN.noricanTextTheme; + + /// See [PartN.nosifer]. static const nosifer = PartN.nosifer; + + /// See [PartN.nosiferTextTheme]. static const nosiferTextTheme = PartN.nosiferTextTheme; + + /// See [PartN.notable]. static const notable = PartN.notable; + + /// See [PartN.notableTextTheme]. static const notableTextTheme = PartN.notableTextTheme; + + /// See [PartN.nothingYouCouldDo]. static const nothingYouCouldDo = PartN.nothingYouCouldDo; + + /// See [PartN.nothingYouCouldDoTextTheme]. static const nothingYouCouldDoTextTheme = PartN.nothingYouCouldDoTextTheme; + + /// See [PartN.noticiaText]. static const noticiaText = PartN.noticiaText; + + /// See [PartN.noticiaTextTextTheme]. static const noticiaTextTextTheme = PartN.noticiaTextTextTheme; + + /// See [PartN.notoColorEmoji]. static const notoColorEmoji = PartN.notoColorEmoji; + + /// See [PartN.notoColorEmojiTextTheme]. static const notoColorEmojiTextTheme = PartN.notoColorEmojiTextTheme; + + /// See [PartN.notoEmoji]. static const notoEmoji = PartN.notoEmoji; + + /// See [PartN.notoEmojiTextTheme]. static const notoEmojiTextTheme = PartN.notoEmojiTextTheme; + + /// See [PartN.notoKufiArabic]. static const notoKufiArabic = PartN.notoKufiArabic; + + /// See [PartN.notoKufiArabicTextTheme]. static const notoKufiArabicTextTheme = PartN.notoKufiArabicTextTheme; + + /// See [PartN.notoMusic]. static const notoMusic = PartN.notoMusic; + + /// See [PartN.notoMusicTextTheme]. static const notoMusicTextTheme = PartN.notoMusicTextTheme; + + /// See [PartN.notoNaskhArabic]. static const notoNaskhArabic = PartN.notoNaskhArabic; + + /// See [PartN.notoNaskhArabicTextTheme]. static const notoNaskhArabicTextTheme = PartN.notoNaskhArabicTextTheme; + + /// See [PartN.notoNastaliqUrdu]. static const notoNastaliqUrdu = PartN.notoNastaliqUrdu; + + /// See [PartN.notoNastaliqUrduTextTheme]. static const notoNastaliqUrduTextTheme = PartN.notoNastaliqUrduTextTheme; + + /// See [PartN.notoRashiHebrew]. static const notoRashiHebrew = PartN.notoRashiHebrew; + + /// See [PartN.notoRashiHebrewTextTheme]. static const notoRashiHebrewTextTheme = PartN.notoRashiHebrewTextTheme; + + /// See [PartN.notoSans]. static const notoSans = PartN.notoSans; + + /// See [PartN.notoSansTextTheme]. static const notoSansTextTheme = PartN.notoSansTextTheme; + + /// See [PartN.notoSansAdlam]. static const notoSansAdlam = PartN.notoSansAdlam; + + /// See [PartN.notoSansAdlamTextTheme]. static const notoSansAdlamTextTheme = PartN.notoSansAdlamTextTheme; + + /// See [PartN.notoSansAdlamUnjoined]. static const notoSansAdlamUnjoined = PartN.notoSansAdlamUnjoined; + + /// See [PartN.notoSansAdlamUnjoinedTextTheme]. static const notoSansAdlamUnjoinedTextTheme = PartN.notoSansAdlamUnjoinedTextTheme; + + /// See [PartN.notoSansAnatolianHieroglyphs]. static const notoSansAnatolianHieroglyphs = PartN.notoSansAnatolianHieroglyphs; + + /// See [PartN.notoSansAnatolianHieroglyphsTextTheme]. static const notoSansAnatolianHieroglyphsTextTheme = PartN.notoSansAnatolianHieroglyphsTextTheme; + + /// See [PartN.notoSansArabic]. static const notoSansArabic = PartN.notoSansArabic; + + /// See [PartN.notoSansArabicTextTheme]. static const notoSansArabicTextTheme = PartN.notoSansArabicTextTheme; + + /// See [PartN.notoSansArmenian]. static const notoSansArmenian = PartN.notoSansArmenian; + + /// See [PartN.notoSansArmenianTextTheme]. static const notoSansArmenianTextTheme = PartN.notoSansArmenianTextTheme; + + /// See [PartN.notoSansAvestan]. static const notoSansAvestan = PartN.notoSansAvestan; + + /// See [PartN.notoSansAvestanTextTheme]. static const notoSansAvestanTextTheme = PartN.notoSansAvestanTextTheme; + + /// See [PartN.notoSansBalinese]. static const notoSansBalinese = PartN.notoSansBalinese; + + /// See [PartN.notoSansBalineseTextTheme]. static const notoSansBalineseTextTheme = PartN.notoSansBalineseTextTheme; + + /// See [PartN.notoSansBamum]. static const notoSansBamum = PartN.notoSansBamum; + + /// See [PartN.notoSansBamumTextTheme]. static const notoSansBamumTextTheme = PartN.notoSansBamumTextTheme; + + /// See [PartN.notoSansBassaVah]. static const notoSansBassaVah = PartN.notoSansBassaVah; + + /// See [PartN.notoSansBassaVahTextTheme]. static const notoSansBassaVahTextTheme = PartN.notoSansBassaVahTextTheme; + + /// See [PartN.notoSansBatak]. static const notoSansBatak = PartN.notoSansBatak; + + /// See [PartN.notoSansBatakTextTheme]. static const notoSansBatakTextTheme = PartN.notoSansBatakTextTheme; + + /// See [PartN.notoSansBengali]. static const notoSansBengali = PartN.notoSansBengali; + + /// See [PartN.notoSansBengaliTextTheme]. static const notoSansBengaliTextTheme = PartN.notoSansBengaliTextTheme; + + /// See [PartN.notoSansBhaiksuki]. static const notoSansBhaiksuki = PartN.notoSansBhaiksuki; + + /// See [PartN.notoSansBhaiksukiTextTheme]. static const notoSansBhaiksukiTextTheme = PartN.notoSansBhaiksukiTextTheme; + + /// See [PartN.notoSansBrahmi]. static const notoSansBrahmi = PartN.notoSansBrahmi; + + /// See [PartN.notoSansBrahmiTextTheme]. static const notoSansBrahmiTextTheme = PartN.notoSansBrahmiTextTheme; + + /// See [PartN.notoSansBuginese]. static const notoSansBuginese = PartN.notoSansBuginese; + + /// See [PartN.notoSansBugineseTextTheme]. static const notoSansBugineseTextTheme = PartN.notoSansBugineseTextTheme; + + /// See [PartN.notoSansBuhid]. static const notoSansBuhid = PartN.notoSansBuhid; + + /// See [PartN.notoSansBuhidTextTheme]. static const notoSansBuhidTextTheme = PartN.notoSansBuhidTextTheme; + + /// See [PartN.notoSansCanadianAboriginal]. static const notoSansCanadianAboriginal = PartN.notoSansCanadianAboriginal; + + /// See [PartN.notoSansCanadianAboriginalTextTheme]. static const notoSansCanadianAboriginalTextTheme = PartN.notoSansCanadianAboriginalTextTheme; + + /// See [PartN.notoSansCarian]. static const notoSansCarian = PartN.notoSansCarian; + + /// See [PartN.notoSansCarianTextTheme]. static const notoSansCarianTextTheme = PartN.notoSansCarianTextTheme; + + /// See [PartN.notoSansCaucasianAlbanian]. static const notoSansCaucasianAlbanian = PartN.notoSansCaucasianAlbanian; + + /// See [PartN.notoSansCaucasianAlbanianTextTheme]. static const notoSansCaucasianAlbanianTextTheme = PartN.notoSansCaucasianAlbanianTextTheme; + + /// See [PartN.notoSansChakma]. static const notoSansChakma = PartN.notoSansChakma; + + /// See [PartN.notoSansChakmaTextTheme]. static const notoSansChakmaTextTheme = PartN.notoSansChakmaTextTheme; + + /// See [PartN.notoSansCham]. static const notoSansCham = PartN.notoSansCham; + + /// See [PartN.notoSansChamTextTheme]. static const notoSansChamTextTheme = PartN.notoSansChamTextTheme; + + /// See [PartN.notoSansCherokee]. static const notoSansCherokee = PartN.notoSansCherokee; + + /// See [PartN.notoSansCherokeeTextTheme]. static const notoSansCherokeeTextTheme = PartN.notoSansCherokeeTextTheme; + + /// See [PartN.notoSansChorasmian]. static const notoSansChorasmian = PartN.notoSansChorasmian; + + /// See [PartN.notoSansChorasmianTextTheme]. static const notoSansChorasmianTextTheme = PartN.notoSansChorasmianTextTheme; + + /// See [PartN.notoSansCoptic]. static const notoSansCoptic = PartN.notoSansCoptic; + + /// See [PartN.notoSansCopticTextTheme]. static const notoSansCopticTextTheme = PartN.notoSansCopticTextTheme; + + /// See [PartN.notoSansCuneiform]. static const notoSansCuneiform = PartN.notoSansCuneiform; + + /// See [PartN.notoSansCuneiformTextTheme]. static const notoSansCuneiformTextTheme = PartN.notoSansCuneiformTextTheme; + + /// See [PartN.notoSansCypriot]. static const notoSansCypriot = PartN.notoSansCypriot; + + /// See [PartN.notoSansCypriotTextTheme]. static const notoSansCypriotTextTheme = PartN.notoSansCypriotTextTheme; + + /// See [PartN.notoSansCyproMinoan]. static const notoSansCyproMinoan = PartN.notoSansCyproMinoan; + + /// See [PartN.notoSansCyproMinoanTextTheme]. static const notoSansCyproMinoanTextTheme = PartN.notoSansCyproMinoanTextTheme; + + /// See [PartN.notoSansDeseret]. static const notoSansDeseret = PartN.notoSansDeseret; + + /// See [PartN.notoSansDeseretTextTheme]. static const notoSansDeseretTextTheme = PartN.notoSansDeseretTextTheme; + + /// See [PartN.notoSansDevanagari]. static const notoSansDevanagari = PartN.notoSansDevanagari; + + /// See [PartN.notoSansDevanagariTextTheme]. static const notoSansDevanagariTextTheme = PartN.notoSansDevanagariTextTheme; + + /// See [PartN.notoSansDisplay]. static const notoSansDisplay = PartN.notoSansDisplay; + + /// See [PartN.notoSansDisplayTextTheme]. static const notoSansDisplayTextTheme = PartN.notoSansDisplayTextTheme; + + /// See [PartN.notoSansDuployan]. static const notoSansDuployan = PartN.notoSansDuployan; + + /// See [PartN.notoSansDuployanTextTheme]. static const notoSansDuployanTextTheme = PartN.notoSansDuployanTextTheme; + + /// See [PartN.notoSansEgyptianHieroglyphs]. static const notoSansEgyptianHieroglyphs = PartN.notoSansEgyptianHieroglyphs; + + /// See [PartN.notoSansEgyptianHieroglyphsTextTheme]. static const notoSansEgyptianHieroglyphsTextTheme = PartN.notoSansEgyptianHieroglyphsTextTheme; + + /// See [PartN.notoSansElbasan]. static const notoSansElbasan = PartN.notoSansElbasan; + + /// See [PartN.notoSansElbasanTextTheme]. static const notoSansElbasanTextTheme = PartN.notoSansElbasanTextTheme; + + /// See [PartN.notoSansElymaic]. static const notoSansElymaic = PartN.notoSansElymaic; + + /// See [PartN.notoSansElymaicTextTheme]. static const notoSansElymaicTextTheme = PartN.notoSansElymaicTextTheme; + + /// See [PartN.notoSansEthiopic]. static const notoSansEthiopic = PartN.notoSansEthiopic; + + /// See [PartN.notoSansEthiopicTextTheme]. static const notoSansEthiopicTextTheme = PartN.notoSansEthiopicTextTheme; + + /// See [PartN.notoSansGeorgian]. static const notoSansGeorgian = PartN.notoSansGeorgian; + + /// See [PartN.notoSansGeorgianTextTheme]. static const notoSansGeorgianTextTheme = PartN.notoSansGeorgianTextTheme; + + /// See [PartN.notoSansGlagolitic]. static const notoSansGlagolitic = PartN.notoSansGlagolitic; + + /// See [PartN.notoSansGlagoliticTextTheme]. static const notoSansGlagoliticTextTheme = PartN.notoSansGlagoliticTextTheme; + + /// See [PartN.notoSansGothic]. static const notoSansGothic = PartN.notoSansGothic; + + /// See [PartN.notoSansGothicTextTheme]. static const notoSansGothicTextTheme = PartN.notoSansGothicTextTheme; + + /// See [PartN.notoSansGrantha]. static const notoSansGrantha = PartN.notoSansGrantha; + + /// See [PartN.notoSansGranthaTextTheme]. static const notoSansGranthaTextTheme = PartN.notoSansGranthaTextTheme; + + /// See [PartN.notoSansGujarati]. static const notoSansGujarati = PartN.notoSansGujarati; + + /// See [PartN.notoSansGujaratiTextTheme]. static const notoSansGujaratiTextTheme = PartN.notoSansGujaratiTextTheme; + + /// See [PartN.notoSansGunjalaGondi]. static const notoSansGunjalaGondi = PartN.notoSansGunjalaGondi; + + /// See [PartN.notoSansGunjalaGondiTextTheme]. static const notoSansGunjalaGondiTextTheme = PartN.notoSansGunjalaGondiTextTheme; + + /// See [PartN.notoSansGurmukhi]. static const notoSansGurmukhi = PartN.notoSansGurmukhi; + + /// See [PartN.notoSansGurmukhiTextTheme]. static const notoSansGurmukhiTextTheme = PartN.notoSansGurmukhiTextTheme; + + /// See [PartN.notoSansHk]. static const notoSansHk = PartN.notoSansHk; + + /// See [PartN.notoSansHkTextTheme]. static const notoSansHkTextTheme = PartN.notoSansHkTextTheme; + + /// See [PartN.notoSansHanifiRohingya]. static const notoSansHanifiRohingya = PartN.notoSansHanifiRohingya; + + /// See [PartN.notoSansHanifiRohingyaTextTheme]. static const notoSansHanifiRohingyaTextTheme = PartN.notoSansHanifiRohingyaTextTheme; + + /// See [PartN.notoSansHanunoo]. static const notoSansHanunoo = PartN.notoSansHanunoo; + + /// See [PartN.notoSansHanunooTextTheme]. static const notoSansHanunooTextTheme = PartN.notoSansHanunooTextTheme; + + /// See [PartN.notoSansHatran]. static const notoSansHatran = PartN.notoSansHatran; + + /// See [PartN.notoSansHatranTextTheme]. static const notoSansHatranTextTheme = PartN.notoSansHatranTextTheme; + + /// See [PartN.notoSansHebrew]. static const notoSansHebrew = PartN.notoSansHebrew; + + /// See [PartN.notoSansHebrewTextTheme]. static const notoSansHebrewTextTheme = PartN.notoSansHebrewTextTheme; + + /// See [PartN.notoSansImperialAramaic]. static const notoSansImperialAramaic = PartN.notoSansImperialAramaic; + + /// See [PartN.notoSansImperialAramaicTextTheme]. static const notoSansImperialAramaicTextTheme = PartN.notoSansImperialAramaicTextTheme; + + /// See [PartN.notoSansIndicSiyaqNumbers]. static const notoSansIndicSiyaqNumbers = PartN.notoSansIndicSiyaqNumbers; + + /// See [PartN.notoSansIndicSiyaqNumbersTextTheme]. static const notoSansIndicSiyaqNumbersTextTheme = PartN.notoSansIndicSiyaqNumbersTextTheme; + + /// See [PartN.notoSansInscriptionalPahlavi]. static const notoSansInscriptionalPahlavi = PartN.notoSansInscriptionalPahlavi; + + /// See [PartN.notoSansInscriptionalPahlaviTextTheme]. static const notoSansInscriptionalPahlaviTextTheme = PartN.notoSansInscriptionalPahlaviTextTheme; + + /// See [PartN.notoSansInscriptionalParthian]. static const notoSansInscriptionalParthian = PartN.notoSansInscriptionalParthian; + + /// See [PartN.notoSansInscriptionalParthianTextTheme]. static const notoSansInscriptionalParthianTextTheme = PartN.notoSansInscriptionalParthianTextTheme; + + /// See [PartN.notoSansJp]. static const notoSansJp = PartN.notoSansJp; + + /// See [PartN.notoSansJpTextTheme]. static const notoSansJpTextTheme = PartN.notoSansJpTextTheme; + + /// See [PartN.notoSansJavanese]. static const notoSansJavanese = PartN.notoSansJavanese; + + /// See [PartN.notoSansJavaneseTextTheme]. static const notoSansJavaneseTextTheme = PartN.notoSansJavaneseTextTheme; + + /// See [PartN.notoSansKr]. static const notoSansKr = PartN.notoSansKr; + + /// See [PartN.notoSansKrTextTheme]. static const notoSansKrTextTheme = PartN.notoSansKrTextTheme; + + /// See [PartN.notoSansKaithi]. static const notoSansKaithi = PartN.notoSansKaithi; + + /// See [PartN.notoSansKaithiTextTheme]. static const notoSansKaithiTextTheme = PartN.notoSansKaithiTextTheme; + + /// See [PartN.notoSansKannada]. static const notoSansKannada = PartN.notoSansKannada; + + /// See [PartN.notoSansKannadaTextTheme]. static const notoSansKannadaTextTheme = PartN.notoSansKannadaTextTheme; + + /// See [PartN.notoSansKawi]. static const notoSansKawi = PartN.notoSansKawi; + + /// See [PartN.notoSansKawiTextTheme]. static const notoSansKawiTextTheme = PartN.notoSansKawiTextTheme; + + /// See [PartN.notoSansKayahLi]. static const notoSansKayahLi = PartN.notoSansKayahLi; + + /// See [PartN.notoSansKayahLiTextTheme]. static const notoSansKayahLiTextTheme = PartN.notoSansKayahLiTextTheme; + + /// See [PartN.notoSansKharoshthi]. static const notoSansKharoshthi = PartN.notoSansKharoshthi; + + /// See [PartN.notoSansKharoshthiTextTheme]. static const notoSansKharoshthiTextTheme = PartN.notoSansKharoshthiTextTheme; + + /// See [PartN.notoSansKhmer]. static const notoSansKhmer = PartN.notoSansKhmer; + + /// See [PartN.notoSansKhmerTextTheme]. static const notoSansKhmerTextTheme = PartN.notoSansKhmerTextTheme; + + /// See [PartN.notoSansKhojki]. static const notoSansKhojki = PartN.notoSansKhojki; + + /// See [PartN.notoSansKhojkiTextTheme]. static const notoSansKhojkiTextTheme = PartN.notoSansKhojkiTextTheme; + + /// See [PartN.notoSansKhudawadi]. static const notoSansKhudawadi = PartN.notoSansKhudawadi; + + /// See [PartN.notoSansKhudawadiTextTheme]. static const notoSansKhudawadiTextTheme = PartN.notoSansKhudawadiTextTheme; + + /// See [PartN.notoSansLao]. static const notoSansLao = PartN.notoSansLao; + + /// See [PartN.notoSansLaoTextTheme]. static const notoSansLaoTextTheme = PartN.notoSansLaoTextTheme; + + /// See [PartN.notoSansLaoLooped]. static const notoSansLaoLooped = PartN.notoSansLaoLooped; + + /// See [PartN.notoSansLaoLoopedTextTheme]. static const notoSansLaoLoopedTextTheme = PartN.notoSansLaoLoopedTextTheme; + + /// See [PartN.notoSansLepcha]. static const notoSansLepcha = PartN.notoSansLepcha; + + /// See [PartN.notoSansLepchaTextTheme]. static const notoSansLepchaTextTheme = PartN.notoSansLepchaTextTheme; + + /// See [PartN.notoSansLimbu]. static const notoSansLimbu = PartN.notoSansLimbu; + + /// See [PartN.notoSansLimbuTextTheme]. static const notoSansLimbuTextTheme = PartN.notoSansLimbuTextTheme; + + /// See [PartN.notoSansLinearA]. static const notoSansLinearA = PartN.notoSansLinearA; + + /// See [PartN.notoSansLinearATextTheme]. static const notoSansLinearATextTheme = PartN.notoSansLinearATextTheme; + + /// See [PartN.notoSansLinearB]. static const notoSansLinearB = PartN.notoSansLinearB; + + /// See [PartN.notoSansLinearBTextTheme]. static const notoSansLinearBTextTheme = PartN.notoSansLinearBTextTheme; + + /// See [PartN.notoSansLisu]. static const notoSansLisu = PartN.notoSansLisu; + + /// See [PartN.notoSansLisuTextTheme]. static const notoSansLisuTextTheme = PartN.notoSansLisuTextTheme; + + /// See [PartN.notoSansLycian]. static const notoSansLycian = PartN.notoSansLycian; + + /// See [PartN.notoSansLycianTextTheme]. static const notoSansLycianTextTheme = PartN.notoSansLycianTextTheme; + + /// See [PartN.notoSansLydian]. static const notoSansLydian = PartN.notoSansLydian; + + /// See [PartN.notoSansLydianTextTheme]. static const notoSansLydianTextTheme = PartN.notoSansLydianTextTheme; + + /// See [PartN.notoSansMahajani]. static const notoSansMahajani = PartN.notoSansMahajani; + + /// See [PartN.notoSansMahajaniTextTheme]. static const notoSansMahajaniTextTheme = PartN.notoSansMahajaniTextTheme; + + /// See [PartN.notoSansMalayalam]. static const notoSansMalayalam = PartN.notoSansMalayalam; + + /// See [PartN.notoSansMalayalamTextTheme]. static const notoSansMalayalamTextTheme = PartN.notoSansMalayalamTextTheme; + + /// See [PartN.notoSansMandaic]. static const notoSansMandaic = PartN.notoSansMandaic; + + /// See [PartN.notoSansMandaicTextTheme]. static const notoSansMandaicTextTheme = PartN.notoSansMandaicTextTheme; + + /// See [PartN.notoSansManichaean]. static const notoSansManichaean = PartN.notoSansManichaean; + + /// See [PartN.notoSansManichaeanTextTheme]. static const notoSansManichaeanTextTheme = PartN.notoSansManichaeanTextTheme; + + /// See [PartN.notoSansMarchen]. static const notoSansMarchen = PartN.notoSansMarchen; + + /// See [PartN.notoSansMarchenTextTheme]. static const notoSansMarchenTextTheme = PartN.notoSansMarchenTextTheme; + + /// See [PartN.notoSansMasaramGondi]. static const notoSansMasaramGondi = PartN.notoSansMasaramGondi; + + /// See [PartN.notoSansMasaramGondiTextTheme]. static const notoSansMasaramGondiTextTheme = PartN.notoSansMasaramGondiTextTheme; + + /// See [PartN.notoSansMath]. static const notoSansMath = PartN.notoSansMath; + + /// See [PartN.notoSansMathTextTheme]. static const notoSansMathTextTheme = PartN.notoSansMathTextTheme; + + /// See [PartN.notoSansMayanNumerals]. static const notoSansMayanNumerals = PartN.notoSansMayanNumerals; + + /// See [PartN.notoSansMayanNumeralsTextTheme]. static const notoSansMayanNumeralsTextTheme = PartN.notoSansMayanNumeralsTextTheme; + + /// See [PartN.notoSansMedefaidrin]. static const notoSansMedefaidrin = PartN.notoSansMedefaidrin; + + /// See [PartN.notoSansMedefaidrinTextTheme]. static const notoSansMedefaidrinTextTheme = PartN.notoSansMedefaidrinTextTheme; + + /// See [PartN.notoSansMeeteiMayek]. static const notoSansMeeteiMayek = PartN.notoSansMeeteiMayek; + + /// See [PartN.notoSansMeeteiMayekTextTheme]. static const notoSansMeeteiMayekTextTheme = PartN.notoSansMeeteiMayekTextTheme; + + /// See [PartN.notoSansMendeKikakui]. static const notoSansMendeKikakui = PartN.notoSansMendeKikakui; + + /// See [PartN.notoSansMendeKikakuiTextTheme]. static const notoSansMendeKikakuiTextTheme = PartN.notoSansMendeKikakuiTextTheme; + + /// See [PartN.notoSansMeroitic]. static const notoSansMeroitic = PartN.notoSansMeroitic; + + /// See [PartN.notoSansMeroiticTextTheme]. static const notoSansMeroiticTextTheme = PartN.notoSansMeroiticTextTheme; + + /// See [PartN.notoSansMiao]. static const notoSansMiao = PartN.notoSansMiao; + + /// See [PartN.notoSansMiaoTextTheme]. static const notoSansMiaoTextTheme = PartN.notoSansMiaoTextTheme; + + /// See [PartN.notoSansModi]. static const notoSansModi = PartN.notoSansModi; + + /// See [PartN.notoSansModiTextTheme]. static const notoSansModiTextTheme = PartN.notoSansModiTextTheme; + + /// See [PartN.notoSansMongolian]. static const notoSansMongolian = PartN.notoSansMongolian; + + /// See [PartN.notoSansMongolianTextTheme]. static const notoSansMongolianTextTheme = PartN.notoSansMongolianTextTheme; + + /// See [PartN.notoSansMono]. static const notoSansMono = PartN.notoSansMono; + + /// See [PartN.notoSansMonoTextTheme]. static const notoSansMonoTextTheme = PartN.notoSansMonoTextTheme; + + /// See [PartN.notoSansMro]. static const notoSansMro = PartN.notoSansMro; + + /// See [PartN.notoSansMroTextTheme]. static const notoSansMroTextTheme = PartN.notoSansMroTextTheme; + + /// See [PartN.notoSansMultani]. static const notoSansMultani = PartN.notoSansMultani; + + /// See [PartN.notoSansMultaniTextTheme]. static const notoSansMultaniTextTheme = PartN.notoSansMultaniTextTheme; + + /// See [PartN.notoSansMyanmar]. static const notoSansMyanmar = PartN.notoSansMyanmar; + + /// See [PartN.notoSansMyanmarTextTheme]. static const notoSansMyanmarTextTheme = PartN.notoSansMyanmarTextTheme; + + /// See [PartN.notoSansNKo]. static const notoSansNKo = PartN.notoSansNKo; + + /// See [PartN.notoSansNKoTextTheme]. static const notoSansNKoTextTheme = PartN.notoSansNKoTextTheme; + + /// See [PartN.notoSansNKoUnjoined]. static const notoSansNKoUnjoined = PartN.notoSansNKoUnjoined; + + /// See [PartN.notoSansNKoUnjoinedTextTheme]. static const notoSansNKoUnjoinedTextTheme = PartN.notoSansNKoUnjoinedTextTheme; + + /// See [PartN.notoSansNabataean]. static const notoSansNabataean = PartN.notoSansNabataean; + + /// See [PartN.notoSansNabataeanTextTheme]. static const notoSansNabataeanTextTheme = PartN.notoSansNabataeanTextTheme; + + /// See [PartN.notoSansNagMundari]. static const notoSansNagMundari = PartN.notoSansNagMundari; + + /// See [PartN.notoSansNagMundariTextTheme]. static const notoSansNagMundariTextTheme = PartN.notoSansNagMundariTextTheme; + + /// See [PartN.notoSansNandinagari]. static const notoSansNandinagari = PartN.notoSansNandinagari; + + /// See [PartN.notoSansNandinagariTextTheme]. static const notoSansNandinagariTextTheme = PartN.notoSansNandinagariTextTheme; + + /// See [PartN.notoSansNewTaiLue]. static const notoSansNewTaiLue = PartN.notoSansNewTaiLue; + + /// See [PartN.notoSansNewTaiLueTextTheme]. static const notoSansNewTaiLueTextTheme = PartN.notoSansNewTaiLueTextTheme; + + /// See [PartN.notoSansNewa]. static const notoSansNewa = PartN.notoSansNewa; + + /// See [PartN.notoSansNewaTextTheme]. static const notoSansNewaTextTheme = PartN.notoSansNewaTextTheme; + + /// See [PartN.notoSansNushu]. static const notoSansNushu = PartN.notoSansNushu; + + /// See [PartN.notoSansNushuTextTheme]. static const notoSansNushuTextTheme = PartN.notoSansNushuTextTheme; + + /// See [PartN.notoSansOgham]. static const notoSansOgham = PartN.notoSansOgham; + + /// See [PartN.notoSansOghamTextTheme]. static const notoSansOghamTextTheme = PartN.notoSansOghamTextTheme; + + /// See [PartN.notoSansOlChiki]. static const notoSansOlChiki = PartN.notoSansOlChiki; + + /// See [PartN.notoSansOlChikiTextTheme]. static const notoSansOlChikiTextTheme = PartN.notoSansOlChikiTextTheme; + + /// See [PartN.notoSansOldHungarian]. static const notoSansOldHungarian = PartN.notoSansOldHungarian; + + /// See [PartN.notoSansOldHungarianTextTheme]. static const notoSansOldHungarianTextTheme = PartN.notoSansOldHungarianTextTheme; + + /// See [PartN.notoSansOldItalic]. static const notoSansOldItalic = PartN.notoSansOldItalic; + + /// See [PartN.notoSansOldItalicTextTheme]. static const notoSansOldItalicTextTheme = PartN.notoSansOldItalicTextTheme; + + /// See [PartN.notoSansOldNorthArabian]. static const notoSansOldNorthArabian = PartN.notoSansOldNorthArabian; + + /// See [PartN.notoSansOldNorthArabianTextTheme]. static const notoSansOldNorthArabianTextTheme = PartN.notoSansOldNorthArabianTextTheme; + + /// See [PartN.notoSansOldPermic]. static const notoSansOldPermic = PartN.notoSansOldPermic; + + /// See [PartN.notoSansOldPermicTextTheme]. static const notoSansOldPermicTextTheme = PartN.notoSansOldPermicTextTheme; + + /// See [PartN.notoSansOldPersian]. static const notoSansOldPersian = PartN.notoSansOldPersian; + + /// See [PartN.notoSansOldPersianTextTheme]. static const notoSansOldPersianTextTheme = PartN.notoSansOldPersianTextTheme; + + /// See [PartN.notoSansOldSogdian]. static const notoSansOldSogdian = PartN.notoSansOldSogdian; + + /// See [PartN.notoSansOldSogdianTextTheme]. static const notoSansOldSogdianTextTheme = PartN.notoSansOldSogdianTextTheme; + + /// See [PartN.notoSansOldSouthArabian]. static const notoSansOldSouthArabian = PartN.notoSansOldSouthArabian; + + /// See [PartN.notoSansOldSouthArabianTextTheme]. static const notoSansOldSouthArabianTextTheme = PartN.notoSansOldSouthArabianTextTheme; + + /// See [PartN.notoSansOldTurkic]. static const notoSansOldTurkic = PartN.notoSansOldTurkic; + + /// See [PartN.notoSansOldTurkicTextTheme]. static const notoSansOldTurkicTextTheme = PartN.notoSansOldTurkicTextTheme; + + /// See [PartN.notoSansOriya]. static const notoSansOriya = PartN.notoSansOriya; + + /// See [PartN.notoSansOriyaTextTheme]. static const notoSansOriyaTextTheme = PartN.notoSansOriyaTextTheme; + + /// See [PartN.notoSansOsage]. static const notoSansOsage = PartN.notoSansOsage; + + /// See [PartN.notoSansOsageTextTheme]. static const notoSansOsageTextTheme = PartN.notoSansOsageTextTheme; + + /// See [PartN.notoSansOsmanya]. static const notoSansOsmanya = PartN.notoSansOsmanya; + + /// See [PartN.notoSansOsmanyaTextTheme]. static const notoSansOsmanyaTextTheme = PartN.notoSansOsmanyaTextTheme; + + /// See [PartN.notoSansPahawhHmong]. static const notoSansPahawhHmong = PartN.notoSansPahawhHmong; + + /// See [PartN.notoSansPahawhHmongTextTheme]. static const notoSansPahawhHmongTextTheme = PartN.notoSansPahawhHmongTextTheme; + + /// See [PartN.notoSansPalmyrene]. static const notoSansPalmyrene = PartN.notoSansPalmyrene; + + /// See [PartN.notoSansPalmyreneTextTheme]. static const notoSansPalmyreneTextTheme = PartN.notoSansPalmyreneTextTheme; + + /// See [PartN.notoSansPauCinHau]. static const notoSansPauCinHau = PartN.notoSansPauCinHau; + + /// See [PartN.notoSansPauCinHauTextTheme]. static const notoSansPauCinHauTextTheme = PartN.notoSansPauCinHauTextTheme; + + /// See [PartN.notoSansPhagsPa]. static const notoSansPhagsPa = PartN.notoSansPhagsPa; + + /// See [PartN.notoSansPhagsPaTextTheme]. static const notoSansPhagsPaTextTheme = PartN.notoSansPhagsPaTextTheme; + + /// See [PartN.notoSansPhoenician]. static const notoSansPhoenician = PartN.notoSansPhoenician; + + /// See [PartN.notoSansPhoenicianTextTheme]. static const notoSansPhoenicianTextTheme = PartN.notoSansPhoenicianTextTheme; + + /// See [PartN.notoSansPsalterPahlavi]. static const notoSansPsalterPahlavi = PartN.notoSansPsalterPahlavi; + + /// See [PartN.notoSansPsalterPahlaviTextTheme]. static const notoSansPsalterPahlaviTextTheme = PartN.notoSansPsalterPahlaviTextTheme; + + /// See [PartN.notoSansRejang]. static const notoSansRejang = PartN.notoSansRejang; + + /// See [PartN.notoSansRejangTextTheme]. static const notoSansRejangTextTheme = PartN.notoSansRejangTextTheme; + + /// See [PartN.notoSansRunic]. static const notoSansRunic = PartN.notoSansRunic; + + /// See [PartN.notoSansRunicTextTheme]. static const notoSansRunicTextTheme = PartN.notoSansRunicTextTheme; + + /// See [PartN.notoSansSc]. static const notoSansSc = PartN.notoSansSc; + + /// See [PartN.notoSansScTextTheme]. static const notoSansScTextTheme = PartN.notoSansScTextTheme; + + /// See [PartN.notoSansSamaritan]. static const notoSansSamaritan = PartN.notoSansSamaritan; + + /// See [PartN.notoSansSamaritanTextTheme]. static const notoSansSamaritanTextTheme = PartN.notoSansSamaritanTextTheme; + + /// See [PartN.notoSansSaurashtra]. static const notoSansSaurashtra = PartN.notoSansSaurashtra; + + /// See [PartN.notoSansSaurashtraTextTheme]. static const notoSansSaurashtraTextTheme = PartN.notoSansSaurashtraTextTheme; + + /// See [PartN.notoSansSharada]. static const notoSansSharada = PartN.notoSansSharada; + + /// See [PartN.notoSansSharadaTextTheme]. static const notoSansSharadaTextTheme = PartN.notoSansSharadaTextTheme; + + /// See [PartN.notoSansShavian]. static const notoSansShavian = PartN.notoSansShavian; + + /// See [PartN.notoSansShavianTextTheme]. static const notoSansShavianTextTheme = PartN.notoSansShavianTextTheme; + + /// See [PartN.notoSansSiddham]. static const notoSansSiddham = PartN.notoSansSiddham; + + /// See [PartN.notoSansSiddhamTextTheme]. static const notoSansSiddhamTextTheme = PartN.notoSansSiddhamTextTheme; + + /// See [PartN.notoSansSignWriting]. static const notoSansSignWriting = PartN.notoSansSignWriting; + + /// See [PartN.notoSansSignWritingTextTheme]. static const notoSansSignWritingTextTheme = PartN.notoSansSignWritingTextTheme; + + /// See [PartN.notoSansSinhala]. static const notoSansSinhala = PartN.notoSansSinhala; + + /// See [PartN.notoSansSinhalaTextTheme]. static const notoSansSinhalaTextTheme = PartN.notoSansSinhalaTextTheme; + + /// See [PartN.notoSansSogdian]. static const notoSansSogdian = PartN.notoSansSogdian; + + /// See [PartN.notoSansSogdianTextTheme]. static const notoSansSogdianTextTheme = PartN.notoSansSogdianTextTheme; + + /// See [PartN.notoSansSoraSompeng]. static const notoSansSoraSompeng = PartN.notoSansSoraSompeng; + + /// See [PartN.notoSansSoraSompengTextTheme]. static const notoSansSoraSompengTextTheme = PartN.notoSansSoraSompengTextTheme; + + /// See [PartN.notoSansSoyombo]. static const notoSansSoyombo = PartN.notoSansSoyombo; + + /// See [PartN.notoSansSoyomboTextTheme]. static const notoSansSoyomboTextTheme = PartN.notoSansSoyomboTextTheme; + + /// See [PartN.notoSansSundanese]. static const notoSansSundanese = PartN.notoSansSundanese; + + /// See [PartN.notoSansSundaneseTextTheme]. static const notoSansSundaneseTextTheme = PartN.notoSansSundaneseTextTheme; + + /// See [PartN.notoSansSunuwar]. static const notoSansSunuwar = PartN.notoSansSunuwar; + + /// See [PartN.notoSansSunuwarTextTheme]. static const notoSansSunuwarTextTheme = PartN.notoSansSunuwarTextTheme; + + /// See [PartN.notoSansSylotiNagri]. static const notoSansSylotiNagri = PartN.notoSansSylotiNagri; + + /// See [PartN.notoSansSylotiNagriTextTheme]. static const notoSansSylotiNagriTextTheme = PartN.notoSansSylotiNagriTextTheme; + + /// See [PartN.notoSansSymbols]. static const notoSansSymbols = PartN.notoSansSymbols; + + /// See [PartN.notoSansSymbolsTextTheme]. static const notoSansSymbolsTextTheme = PartN.notoSansSymbolsTextTheme; + + /// See [PartN.notoSansSymbols2]. static const notoSansSymbols2 = PartN.notoSansSymbols2; + + /// See [PartN.notoSansSymbols2TextTheme]. static const notoSansSymbols2TextTheme = PartN.notoSansSymbols2TextTheme; + + /// See [PartN.notoSansSyriac]. static const notoSansSyriac = PartN.notoSansSyriac; + + /// See [PartN.notoSansSyriacTextTheme]. static const notoSansSyriacTextTheme = PartN.notoSansSyriacTextTheme; + + /// See [PartN.notoSansSyriacEastern]. static const notoSansSyriacEastern = PartN.notoSansSyriacEastern; + + /// See [PartN.notoSansSyriacEasternTextTheme]. static const notoSansSyriacEasternTextTheme = PartN.notoSansSyriacEasternTextTheme; + + /// See [PartN.notoSansTc]. static const notoSansTc = PartN.notoSansTc; + + /// See [PartN.notoSansTcTextTheme]. static const notoSansTcTextTheme = PartN.notoSansTcTextTheme; + + /// See [PartN.notoSansTagalog]. static const notoSansTagalog = PartN.notoSansTagalog; + + /// See [PartN.notoSansTagalogTextTheme]. static const notoSansTagalogTextTheme = PartN.notoSansTagalogTextTheme; + + /// See [PartN.notoSansTagbanwa]. static const notoSansTagbanwa = PartN.notoSansTagbanwa; + + /// See [PartN.notoSansTagbanwaTextTheme]. static const notoSansTagbanwaTextTheme = PartN.notoSansTagbanwaTextTheme; + + /// See [PartN.notoSansTaiLe]. static const notoSansTaiLe = PartN.notoSansTaiLe; + + /// See [PartN.notoSansTaiLeTextTheme]. static const notoSansTaiLeTextTheme = PartN.notoSansTaiLeTextTheme; + + /// See [PartN.notoSansTaiTham]. static const notoSansTaiTham = PartN.notoSansTaiTham; + + /// See [PartN.notoSansTaiThamTextTheme]. static const notoSansTaiThamTextTheme = PartN.notoSansTaiThamTextTheme; + + /// See [PartN.notoSansTaiViet]. static const notoSansTaiViet = PartN.notoSansTaiViet; + + /// See [PartN.notoSansTaiVietTextTheme]. static const notoSansTaiVietTextTheme = PartN.notoSansTaiVietTextTheme; + + /// See [PartN.notoSansTakri]. static const notoSansTakri = PartN.notoSansTakri; + + /// See [PartN.notoSansTakriTextTheme]. static const notoSansTakriTextTheme = PartN.notoSansTakriTextTheme; + + /// See [PartN.notoSansTamil]. static const notoSansTamil = PartN.notoSansTamil; + + /// See [PartN.notoSansTamilTextTheme]. static const notoSansTamilTextTheme = PartN.notoSansTamilTextTheme; + + /// See [PartN.notoSansTamilSupplement]. static const notoSansTamilSupplement = PartN.notoSansTamilSupplement; + + /// See [PartN.notoSansTamilSupplementTextTheme]. static const notoSansTamilSupplementTextTheme = PartN.notoSansTamilSupplementTextTheme; + + /// See [PartN.notoSansTangsa]. static const notoSansTangsa = PartN.notoSansTangsa; + + /// See [PartN.notoSansTangsaTextTheme]. static const notoSansTangsaTextTheme = PartN.notoSansTangsaTextTheme; + + /// See [PartN.notoSansTelugu]. static const notoSansTelugu = PartN.notoSansTelugu; + + /// See [PartN.notoSansTeluguTextTheme]. static const notoSansTeluguTextTheme = PartN.notoSansTeluguTextTheme; + + /// See [PartN.notoSansThaana]. static const notoSansThaana = PartN.notoSansThaana; + + /// See [PartN.notoSansThaanaTextTheme]. static const notoSansThaanaTextTheme = PartN.notoSansThaanaTextTheme; + + /// See [PartN.notoSansThai]. static const notoSansThai = PartN.notoSansThai; + + /// See [PartN.notoSansThaiTextTheme]. static const notoSansThaiTextTheme = PartN.notoSansThaiTextTheme; + + /// See [PartN.notoSansThaiLooped]. static const notoSansThaiLooped = PartN.notoSansThaiLooped; + + /// See [PartN.notoSansThaiLoopedTextTheme]. static const notoSansThaiLoopedTextTheme = PartN.notoSansThaiLoopedTextTheme; + + /// See [PartN.notoSansTifinagh]. static const notoSansTifinagh = PartN.notoSansTifinagh; + + /// See [PartN.notoSansTifinaghTextTheme]. static const notoSansTifinaghTextTheme = PartN.notoSansTifinaghTextTheme; + + /// See [PartN.notoSansTirhuta]. static const notoSansTirhuta = PartN.notoSansTirhuta; + + /// See [PartN.notoSansTirhutaTextTheme]. static const notoSansTirhutaTextTheme = PartN.notoSansTirhutaTextTheme; + + /// See [PartN.notoSansUgaritic]. static const notoSansUgaritic = PartN.notoSansUgaritic; + + /// See [PartN.notoSansUgariticTextTheme]. static const notoSansUgariticTextTheme = PartN.notoSansUgariticTextTheme; + + /// See [PartN.notoSansVai]. static const notoSansVai = PartN.notoSansVai; + + /// See [PartN.notoSansVaiTextTheme]. static const notoSansVaiTextTheme = PartN.notoSansVaiTextTheme; + + /// See [PartN.notoSansVithkuqi]. static const notoSansVithkuqi = PartN.notoSansVithkuqi; + + /// See [PartN.notoSansVithkuqiTextTheme]. static const notoSansVithkuqiTextTheme = PartN.notoSansVithkuqiTextTheme; + + /// See [PartN.notoSansWancho]. static const notoSansWancho = PartN.notoSansWancho; + + /// See [PartN.notoSansWanchoTextTheme]. static const notoSansWanchoTextTheme = PartN.notoSansWanchoTextTheme; + + /// See [PartN.notoSansWarangCiti]. static const notoSansWarangCiti = PartN.notoSansWarangCiti; + + /// See [PartN.notoSansWarangCitiTextTheme]. static const notoSansWarangCitiTextTheme = PartN.notoSansWarangCitiTextTheme; + + /// See [PartN.notoSansYi]. static const notoSansYi = PartN.notoSansYi; + + /// See [PartN.notoSansYiTextTheme]. static const notoSansYiTextTheme = PartN.notoSansYiTextTheme; + + /// See [PartN.notoSansZanabazarSquare]. static const notoSansZanabazarSquare = PartN.notoSansZanabazarSquare; + + /// See [PartN.notoSansZanabazarSquareTextTheme]. static const notoSansZanabazarSquareTextTheme = PartN.notoSansZanabazarSquareTextTheme; + + /// See [PartN.notoSerif]. static const notoSerif = PartN.notoSerif; + + /// See [PartN.notoSerifTextTheme]. static const notoSerifTextTheme = PartN.notoSerifTextTheme; + + /// See [PartN.notoSerifAhom]. static const notoSerifAhom = PartN.notoSerifAhom; + + /// See [PartN.notoSerifAhomTextTheme]. static const notoSerifAhomTextTheme = PartN.notoSerifAhomTextTheme; + + /// See [PartN.notoSerifArmenian]. static const notoSerifArmenian = PartN.notoSerifArmenian; + + /// See [PartN.notoSerifArmenianTextTheme]. static const notoSerifArmenianTextTheme = PartN.notoSerifArmenianTextTheme; + + /// See [PartN.notoSerifBalinese]. static const notoSerifBalinese = PartN.notoSerifBalinese; + + /// See [PartN.notoSerifBalineseTextTheme]. static const notoSerifBalineseTextTheme = PartN.notoSerifBalineseTextTheme; + + /// See [PartN.notoSerifBengali]. static const notoSerifBengali = PartN.notoSerifBengali; + + /// See [PartN.notoSerifBengaliTextTheme]. static const notoSerifBengaliTextTheme = PartN.notoSerifBengaliTextTheme; + + /// See [PartN.notoSerifDevanagari]. static const notoSerifDevanagari = PartN.notoSerifDevanagari; + + /// See [PartN.notoSerifDevanagariTextTheme]. static const notoSerifDevanagariTextTheme = PartN.notoSerifDevanagariTextTheme; + + /// See [PartN.notoSerifDisplay]. static const notoSerifDisplay = PartN.notoSerifDisplay; + + /// See [PartN.notoSerifDisplayTextTheme]. static const notoSerifDisplayTextTheme = PartN.notoSerifDisplayTextTheme; + + /// See [PartN.notoSerifDivesAkuru]. static const notoSerifDivesAkuru = PartN.notoSerifDivesAkuru; + + /// See [PartN.notoSerifDivesAkuruTextTheme]. static const notoSerifDivesAkuruTextTheme = PartN.notoSerifDivesAkuruTextTheme; + + /// See [PartN.notoSerifDogra]. static const notoSerifDogra = PartN.notoSerifDogra; + + /// See [PartN.notoSerifDograTextTheme]. static const notoSerifDograTextTheme = PartN.notoSerifDograTextTheme; + + /// See [PartN.notoSerifEthiopic]. static const notoSerifEthiopic = PartN.notoSerifEthiopic; + + /// See [PartN.notoSerifEthiopicTextTheme]. static const notoSerifEthiopicTextTheme = PartN.notoSerifEthiopicTextTheme; + + /// See [PartN.notoSerifGeorgian]. static const notoSerifGeorgian = PartN.notoSerifGeorgian; + + /// See [PartN.notoSerifGeorgianTextTheme]. static const notoSerifGeorgianTextTheme = PartN.notoSerifGeorgianTextTheme; + + /// See [PartN.notoSerifGrantha]. static const notoSerifGrantha = PartN.notoSerifGrantha; + + /// See [PartN.notoSerifGranthaTextTheme]. static const notoSerifGranthaTextTheme = PartN.notoSerifGranthaTextTheme; + + /// See [PartN.notoSerifGujarati]. static const notoSerifGujarati = PartN.notoSerifGujarati; + + /// See [PartN.notoSerifGujaratiTextTheme]. static const notoSerifGujaratiTextTheme = PartN.notoSerifGujaratiTextTheme; + + /// See [PartN.notoSerifGurmukhi]. static const notoSerifGurmukhi = PartN.notoSerifGurmukhi; + + /// See [PartN.notoSerifGurmukhiTextTheme]. static const notoSerifGurmukhiTextTheme = PartN.notoSerifGurmukhiTextTheme; + + /// See [PartN.notoSerifHk]. static const notoSerifHk = PartN.notoSerifHk; + + /// See [PartN.notoSerifHkTextTheme]. static const notoSerifHkTextTheme = PartN.notoSerifHkTextTheme; + + /// See [PartN.notoSerifHebrew]. static const notoSerifHebrew = PartN.notoSerifHebrew; + + /// See [PartN.notoSerifHebrewTextTheme]. static const notoSerifHebrewTextTheme = PartN.notoSerifHebrewTextTheme; + + /// See [PartN.notoSerifHentaigana]. static const notoSerifHentaigana = PartN.notoSerifHentaigana; + + /// See [PartN.notoSerifHentaiganaTextTheme]. static const notoSerifHentaiganaTextTheme = PartN.notoSerifHentaiganaTextTheme; + + /// See [PartN.notoSerifJp]. static const notoSerifJp = PartN.notoSerifJp; + + /// See [PartN.notoSerifJpTextTheme]. static const notoSerifJpTextTheme = PartN.notoSerifJpTextTheme; + + /// See [PartN.notoSerifKr]. static const notoSerifKr = PartN.notoSerifKr; + + /// See [PartN.notoSerifKrTextTheme]. static const notoSerifKrTextTheme = PartN.notoSerifKrTextTheme; + + /// See [PartN.notoSerifKannada]. static const notoSerifKannada = PartN.notoSerifKannada; + + /// See [PartN.notoSerifKannadaTextTheme]. static const notoSerifKannadaTextTheme = PartN.notoSerifKannadaTextTheme; + + /// See [PartN.notoSerifKhitanSmallScript]. static const notoSerifKhitanSmallScript = PartN.notoSerifKhitanSmallScript; + + /// See [PartN.notoSerifKhitanSmallScriptTextTheme]. static const notoSerifKhitanSmallScriptTextTheme = PartN.notoSerifKhitanSmallScriptTextTheme; + + /// See [PartN.notoSerifKhmer]. static const notoSerifKhmer = PartN.notoSerifKhmer; + + /// See [PartN.notoSerifKhmerTextTheme]. static const notoSerifKhmerTextTheme = PartN.notoSerifKhmerTextTheme; + + /// See [PartN.notoSerifKhojki]. static const notoSerifKhojki = PartN.notoSerifKhojki; + + /// See [PartN.notoSerifKhojkiTextTheme]. static const notoSerifKhojkiTextTheme = PartN.notoSerifKhojkiTextTheme; + + /// See [PartN.notoSerifLao]. static const notoSerifLao = PartN.notoSerifLao; + + /// See [PartN.notoSerifLaoTextTheme]. static const notoSerifLaoTextTheme = PartN.notoSerifLaoTextTheme; + + /// See [PartN.notoSerifMakasar]. static const notoSerifMakasar = PartN.notoSerifMakasar; + + /// See [PartN.notoSerifMakasarTextTheme]. static const notoSerifMakasarTextTheme = PartN.notoSerifMakasarTextTheme; + + /// See [PartN.notoSerifMalayalam]. static const notoSerifMalayalam = PartN.notoSerifMalayalam; + + /// See [PartN.notoSerifMalayalamTextTheme]. static const notoSerifMalayalamTextTheme = PartN.notoSerifMalayalamTextTheme; + + /// See [PartN.notoSerifMyanmar]. static const notoSerifMyanmar = PartN.notoSerifMyanmar; + + /// See [PartN.notoSerifMyanmarTextTheme]. static const notoSerifMyanmarTextTheme = PartN.notoSerifMyanmarTextTheme; + + /// See [PartN.notoSerifNpHmong]. static const notoSerifNpHmong = PartN.notoSerifNpHmong; + + /// See [PartN.notoSerifNpHmongTextTheme]. static const notoSerifNpHmongTextTheme = PartN.notoSerifNpHmongTextTheme; + + /// See [PartN.notoSerifOldUyghur]. static const notoSerifOldUyghur = PartN.notoSerifOldUyghur; + + /// See [PartN.notoSerifOldUyghurTextTheme]. static const notoSerifOldUyghurTextTheme = PartN.notoSerifOldUyghurTextTheme; + + /// See [PartN.notoSerifOriya]. static const notoSerifOriya = PartN.notoSerifOriya; + + /// See [PartN.notoSerifOriyaTextTheme]. static const notoSerifOriyaTextTheme = PartN.notoSerifOriyaTextTheme; + + /// See [PartN.notoSerifOttomanSiyaq]. static const notoSerifOttomanSiyaq = PartN.notoSerifOttomanSiyaq; + + /// See [PartN.notoSerifOttomanSiyaqTextTheme]. static const notoSerifOttomanSiyaqTextTheme = PartN.notoSerifOttomanSiyaqTextTheme; + + /// See [PartN.notoSerifSc]. static const notoSerifSc = PartN.notoSerifSc; + + /// See [PartN.notoSerifScTextTheme]. static const notoSerifScTextTheme = PartN.notoSerifScTextTheme; + + /// See [PartN.notoSerifSinhala]. static const notoSerifSinhala = PartN.notoSerifSinhala; + + /// See [PartN.notoSerifSinhalaTextTheme]. static const notoSerifSinhalaTextTheme = PartN.notoSerifSinhalaTextTheme; + + /// See [PartN.notoSerifTc]. static const notoSerifTc = PartN.notoSerifTc; + + /// See [PartN.notoSerifTcTextTheme]. static const notoSerifTcTextTheme = PartN.notoSerifTcTextTheme; + + /// See [PartN.notoSerifTamil]. static const notoSerifTamil = PartN.notoSerifTamil; + + /// See [PartN.notoSerifTamilTextTheme]. static const notoSerifTamilTextTheme = PartN.notoSerifTamilTextTheme; + + /// See [PartN.notoSerifTangut]. static const notoSerifTangut = PartN.notoSerifTangut; + + /// See [PartN.notoSerifTangutTextTheme]. static const notoSerifTangutTextTheme = PartN.notoSerifTangutTextTheme; + + /// See [PartN.notoSerifTelugu]. static const notoSerifTelugu = PartN.notoSerifTelugu; + + /// See [PartN.notoSerifTeluguTextTheme]. static const notoSerifTeluguTextTheme = PartN.notoSerifTeluguTextTheme; + + /// See [PartN.notoSerifThai]. static const notoSerifThai = PartN.notoSerifThai; + + /// See [PartN.notoSerifThaiTextTheme]. static const notoSerifThaiTextTheme = PartN.notoSerifThaiTextTheme; + + /// See [PartN.notoSerifTibetan]. static const notoSerifTibetan = PartN.notoSerifTibetan; + + /// See [PartN.notoSerifTibetanTextTheme]. static const notoSerifTibetanTextTheme = PartN.notoSerifTibetanTextTheme; + + /// See [PartN.notoSerifTodhri]. static const notoSerifTodhri = PartN.notoSerifTodhri; + + /// See [PartN.notoSerifTodhriTextTheme]. static const notoSerifTodhriTextTheme = PartN.notoSerifTodhriTextTheme; + + /// See [PartN.notoSerifToto]. static const notoSerifToto = PartN.notoSerifToto; + + /// See [PartN.notoSerifTotoTextTheme]. static const notoSerifTotoTextTheme = PartN.notoSerifTotoTextTheme; + + /// See [PartN.notoSerifVithkuqi]. static const notoSerifVithkuqi = PartN.notoSerifVithkuqi; + + /// See [PartN.notoSerifVithkuqiTextTheme]. static const notoSerifVithkuqiTextTheme = PartN.notoSerifVithkuqiTextTheme; + + /// See [PartN.notoSerifYezidi]. static const notoSerifYezidi = PartN.notoSerifYezidi; + + /// See [PartN.notoSerifYezidiTextTheme]. static const notoSerifYezidiTextTheme = PartN.notoSerifYezidiTextTheme; + + /// See [PartN.notoTraditionalNushu]. static const notoTraditionalNushu = PartN.notoTraditionalNushu; + + /// See [PartN.notoTraditionalNushuTextTheme]. static const notoTraditionalNushuTextTheme = PartN.notoTraditionalNushuTextTheme; + + /// See [PartN.notoZnamennyMusicalNotation]. static const notoZnamennyMusicalNotation = PartN.notoZnamennyMusicalNotation; + + /// See [PartN.notoZnamennyMusicalNotationTextTheme]. static const notoZnamennyMusicalNotationTextTheme = PartN.notoZnamennyMusicalNotationTextTheme; + + /// See [PartN.novaCut]. static const novaCut = PartN.novaCut; + + /// See [PartN.novaCutTextTheme]. static const novaCutTextTheme = PartN.novaCutTextTheme; + + /// See [PartN.novaFlat]. static const novaFlat = PartN.novaFlat; + + /// See [PartN.novaFlatTextTheme]. static const novaFlatTextTheme = PartN.novaFlatTextTheme; + + /// See [PartN.novaMono]. static const novaMono = PartN.novaMono; + + /// See [PartN.novaMonoTextTheme]. static const novaMonoTextTheme = PartN.novaMonoTextTheme; + + /// See [PartN.novaOval]. static const novaOval = PartN.novaOval; + + /// See [PartN.novaOvalTextTheme]. static const novaOvalTextTheme = PartN.novaOvalTextTheme; + + /// See [PartN.novaRound]. static const novaRound = PartN.novaRound; + + /// See [PartN.novaRoundTextTheme]. static const novaRoundTextTheme = PartN.novaRoundTextTheme; + + /// See [PartN.novaScript]. static const novaScript = PartN.novaScript; + + /// See [PartN.novaScriptTextTheme]. static const novaScriptTextTheme = PartN.novaScriptTextTheme; + + /// See [PartN.novaSlim]. static const novaSlim = PartN.novaSlim; + + /// See [PartN.novaSlimTextTheme]. static const novaSlimTextTheme = PartN.novaSlimTextTheme; + + /// See [PartN.novaSquare]. static const novaSquare = PartN.novaSquare; + + /// See [PartN.novaSquareTextTheme]. static const novaSquareTextTheme = PartN.novaSquareTextTheme; + + /// See [PartN.numans]. static const numans = PartN.numans; + + /// See [PartN.numansTextTheme]. static const numansTextTheme = PartN.numansTextTheme; + + /// See [PartN.nunito]. static const nunito = PartN.nunito; + + /// See [PartN.nunitoTextTheme]. static const nunitoTextTheme = PartN.nunitoTextTheme; + + /// See [PartN.nunitoSans]. static const nunitoSans = PartN.nunitoSans; + + /// See [PartN.nunitoSansTextTheme]. static const nunitoSansTextTheme = PartN.nunitoSansTextTheme; + + /// See [PartN.nuosuSil]. static const nuosuSil = PartN.nuosuSil; + + /// See [PartN.nuosuSilTextTheme]. static const nuosuSilTextTheme = PartN.nuosuSilTextTheme; + + /// See [PartO.odibeeSans]. static const odibeeSans = PartO.odibeeSans; + + /// See [PartO.odibeeSansTextTheme]. static const odibeeSansTextTheme = PartO.odibeeSansTextTheme; + + /// See [PartO.odorMeanChey]. static const odorMeanChey = PartO.odorMeanChey; + + /// See [PartO.odorMeanCheyTextTheme]. static const odorMeanCheyTextTheme = PartO.odorMeanCheyTextTheme; + + /// See [PartO.offside]. static const offside = PartO.offside; + + /// See [PartO.offsideTextTheme]. static const offsideTextTheme = PartO.offsideTextTheme; + + /// See [PartO.oi]. static const oi = PartO.oi; + + /// See [PartO.oiTextTheme]. static const oiTextTheme = PartO.oiTextTheme; + + /// See [PartO.ojuju]. static const ojuju = PartO.ojuju; + + /// See [PartO.ojujuTextTheme]. static const ojujuTextTheme = PartO.ojujuTextTheme; + + /// See [PartO.oldStandardTt]. static const oldStandardTt = PartO.oldStandardTt; + + /// See [PartO.oldStandardTtTextTheme]. static const oldStandardTtTextTheme = PartO.oldStandardTtTextTheme; + + /// See [PartO.oldenburg]. static const oldenburg = PartO.oldenburg; + + /// See [PartO.oldenburgTextTheme]. static const oldenburgTextTheme = PartO.oldenburgTextTheme; + + /// See [PartO.ole]. static const ole = PartO.ole; + + /// See [PartO.oleTextTheme]. static const oleTextTheme = PartO.oleTextTheme; + + /// See [PartO.oleoScript]. static const oleoScript = PartO.oleoScript; + + /// See [PartO.oleoScriptTextTheme]. static const oleoScriptTextTheme = PartO.oleoScriptTextTheme; + + /// See [PartO.oleoScriptSwashCaps]. static const oleoScriptSwashCaps = PartO.oleoScriptSwashCaps; + + /// See [PartO.oleoScriptSwashCapsTextTheme]. static const oleoScriptSwashCapsTextTheme = PartO.oleoScriptSwashCapsTextTheme; + + /// See [PartO.onest]. static const onest = PartO.onest; + + /// See [PartO.onestTextTheme]. static const onestTextTheme = PartO.onestTextTheme; + + /// See [PartO.ooohBaby]. static const ooohBaby = PartO.ooohBaby; + + /// See [PartO.ooohBabyTextTheme]. static const ooohBabyTextTheme = PartO.ooohBabyTextTheme; + + /// See [PartO.openSans]. static const openSans = PartO.openSans; + + /// See [PartO.openSansTextTheme]. static const openSansTextTheme = PartO.openSansTextTheme; + + /// See [PartO.oranienbaum]. static const oranienbaum = PartO.oranienbaum; + + /// See [PartO.oranienbaumTextTheme]. static const oranienbaumTextTheme = PartO.oranienbaumTextTheme; + + /// See [PartO.orbit]. static const orbit = PartO.orbit; + + /// See [PartO.orbitTextTheme]. static const orbitTextTheme = PartO.orbitTextTheme; + + /// See [PartO.orbitron]. static const orbitron = PartO.orbitron; + + /// See [PartO.orbitronTextTheme]. static const orbitronTextTheme = PartO.orbitronTextTheme; + + /// See [PartO.oregano]. static const oregano = PartO.oregano; + + /// See [PartO.oreganoTextTheme]. static const oreganoTextTheme = PartO.oreganoTextTheme; + + /// See [PartO.orelegaOne]. static const orelegaOne = PartO.orelegaOne; + + /// See [PartO.orelegaOneTextTheme]. static const orelegaOneTextTheme = PartO.orelegaOneTextTheme; + + /// See [PartO.orienta]. static const orienta = PartO.orienta; + + /// See [PartO.orientaTextTheme]. static const orientaTextTheme = PartO.orientaTextTheme; + + /// See [PartO.originalSurfer]. static const originalSurfer = PartO.originalSurfer; + + /// See [PartO.originalSurferTextTheme]. static const originalSurferTextTheme = PartO.originalSurferTextTheme; + + /// See [PartO.oswald]. static const oswald = PartO.oswald; + + /// See [PartO.oswaldTextTheme]. static const oswaldTextTheme = PartO.oswaldTextTheme; + + /// See [PartO.outfit]. static const outfit = PartO.outfit; + + /// See [PartO.outfitTextTheme]. static const outfitTextTheme = PartO.outfitTextTheme; + + /// See [PartO.overTheRainbow]. static const overTheRainbow = PartO.overTheRainbow; + + /// See [PartO.overTheRainbowTextTheme]. static const overTheRainbowTextTheme = PartO.overTheRainbowTextTheme; + + /// See [PartO.overlock]. static const overlock = PartO.overlock; + + /// See [PartO.overlockTextTheme]. static const overlockTextTheme = PartO.overlockTextTheme; + + /// See [PartO.overlockSc]. static const overlockSc = PartO.overlockSc; + + /// See [PartO.overlockScTextTheme]. static const overlockScTextTheme = PartO.overlockScTextTheme; + + /// See [PartO.overpass]. static const overpass = PartO.overpass; + + /// See [PartO.overpassTextTheme]. static const overpassTextTheme = PartO.overpassTextTheme; + + /// See [PartO.overpassMono]. static const overpassMono = PartO.overpassMono; + + /// See [PartO.overpassMonoTextTheme]. static const overpassMonoTextTheme = PartO.overpassMonoTextTheme; + + /// See [PartO.ovo]. static const ovo = PartO.ovo; + + /// See [PartO.ovoTextTheme]. static const ovoTextTheme = PartO.ovoTextTheme; + + /// See [PartO.oxanium]. static const oxanium = PartO.oxanium; + + /// See [PartO.oxaniumTextTheme]. static const oxaniumTextTheme = PartO.oxaniumTextTheme; + + /// See [PartO.oxygen]. static const oxygen = PartO.oxygen; + + /// See [PartO.oxygenTextTheme]. static const oxygenTextTheme = PartO.oxygenTextTheme; + + /// See [PartO.oxygenMono]. static const oxygenMono = PartO.oxygenMono; + + /// See [PartO.oxygenMonoTextTheme]. static const oxygenMonoTextTheme = PartO.oxygenMonoTextTheme; + + /// See [PartP.ptMono]. static const ptMono = PartP.ptMono; + + /// See [PartP.ptMonoTextTheme]. static const ptMonoTextTheme = PartP.ptMonoTextTheme; + + /// See [PartP.ptSans]. static const ptSans = PartP.ptSans; + + /// See [PartP.ptSansTextTheme]. static const ptSansTextTheme = PartP.ptSansTextTheme; + + /// See [PartP.ptSansCaption]. static const ptSansCaption = PartP.ptSansCaption; + + /// See [PartP.ptSansCaptionTextTheme]. static const ptSansCaptionTextTheme = PartP.ptSansCaptionTextTheme; + + /// See [PartP.ptSansNarrow]. static const ptSansNarrow = PartP.ptSansNarrow; + + /// See [PartP.ptSansNarrowTextTheme]. static const ptSansNarrowTextTheme = PartP.ptSansNarrowTextTheme; + + /// See [PartP.ptSerif]. static const ptSerif = PartP.ptSerif; + + /// See [PartP.ptSerifTextTheme]. static const ptSerifTextTheme = PartP.ptSerifTextTheme; + + /// See [PartP.ptSerifCaption]. static const ptSerifCaption = PartP.ptSerifCaption; + + /// See [PartP.ptSerifCaptionTextTheme]. static const ptSerifCaptionTextTheme = PartP.ptSerifCaptionTextTheme; + + /// See [PartP.pacifico]. static const pacifico = PartP.pacifico; + + /// See [PartP.pacificoTextTheme]. static const pacificoTextTheme = PartP.pacificoTextTheme; + + /// See [PartP.padauk]. static const padauk = PartP.padauk; + + /// See [PartP.padaukTextTheme]. static const padaukTextTheme = PartP.padaukTextTheme; + + /// See [PartP.padyakkeExpandedOne]. static const padyakkeExpandedOne = PartP.padyakkeExpandedOne; + + /// See [PartP.padyakkeExpandedOneTextTheme]. static const padyakkeExpandedOneTextTheme = PartP.padyakkeExpandedOneTextTheme; + + /// See [PartP.palanquin]. static const palanquin = PartP.palanquin; + + /// See [PartP.palanquinTextTheme]. static const palanquinTextTheme = PartP.palanquinTextTheme; + + /// See [PartP.palanquinDark]. static const palanquinDark = PartP.palanquinDark; + + /// See [PartP.palanquinDarkTextTheme]. static const palanquinDarkTextTheme = PartP.palanquinDarkTextTheme; + + /// See [PartP.paletteMosaic]. static const paletteMosaic = PartP.paletteMosaic; + + /// See [PartP.paletteMosaicTextTheme]. static const paletteMosaicTextTheme = PartP.paletteMosaicTextTheme; + + /// See [PartP.pangolin]. static const pangolin = PartP.pangolin; + + /// See [PartP.pangolinTextTheme]. static const pangolinTextTheme = PartP.pangolinTextTheme; + + /// See [PartP.paprika]. static const paprika = PartP.paprika; + + /// See [PartP.paprikaTextTheme]. static const paprikaTextTheme = PartP.paprikaTextTheme; + + /// See [PartP.parastoo]. static const parastoo = PartP.parastoo; + + /// See [PartP.parastooTextTheme]. static const parastooTextTheme = PartP.parastooTextTheme; + + /// See [PartP.parisienne]. static const parisienne = PartP.parisienne; + + /// See [PartP.parisienneTextTheme]. static const parisienneTextTheme = PartP.parisienneTextTheme; + + /// See [PartP.parkinsans]. static const parkinsans = PartP.parkinsans; + + /// See [PartP.parkinsansTextTheme]. static const parkinsansTextTheme = PartP.parkinsansTextTheme; + + /// See [PartP.passeroOne]. static const passeroOne = PartP.passeroOne; + + /// See [PartP.passeroOneTextTheme]. static const passeroOneTextTheme = PartP.passeroOneTextTheme; + + /// See [PartP.passionOne]. static const passionOne = PartP.passionOne; + + /// See [PartP.passionOneTextTheme]. static const passionOneTextTheme = PartP.passionOneTextTheme; + + /// See [PartP.passionsConflict]. static const passionsConflict = PartP.passionsConflict; + + /// See [PartP.passionsConflictTextTheme]. static const passionsConflictTextTheme = PartP.passionsConflictTextTheme; + + /// See [PartP.pathwayExtreme]. static const pathwayExtreme = PartP.pathwayExtreme; + + /// See [PartP.pathwayExtremeTextTheme]. static const pathwayExtremeTextTheme = PartP.pathwayExtremeTextTheme; + + /// See [PartP.pathwayGothicOne]. static const pathwayGothicOne = PartP.pathwayGothicOne; + + /// See [PartP.pathwayGothicOneTextTheme]. static const pathwayGothicOneTextTheme = PartP.pathwayGothicOneTextTheme; + + /// See [PartP.patrickHand]. static const patrickHand = PartP.patrickHand; + + /// See [PartP.patrickHandTextTheme]. static const patrickHandTextTheme = PartP.patrickHandTextTheme; + + /// See [PartP.patrickHandSc]. static const patrickHandSc = PartP.patrickHandSc; + + /// See [PartP.patrickHandScTextTheme]. static const patrickHandScTextTheme = PartP.patrickHandScTextTheme; + + /// See [PartP.pattaya]. static const pattaya = PartP.pattaya; + + /// See [PartP.pattayaTextTheme]. static const pattayaTextTheme = PartP.pattayaTextTheme; + + /// See [PartP.patuaOne]. static const patuaOne = PartP.patuaOne; + + /// See [PartP.patuaOneTextTheme]. static const patuaOneTextTheme = PartP.patuaOneTextTheme; + + /// See [PartP.pavanam]. static const pavanam = PartP.pavanam; + + /// See [PartP.pavanamTextTheme]. static const pavanamTextTheme = PartP.pavanamTextTheme; + + /// See [PartP.paytoneOne]. static const paytoneOne = PartP.paytoneOne; + + /// See [PartP.paytoneOneTextTheme]. static const paytoneOneTextTheme = PartP.paytoneOneTextTheme; + + /// See [PartP.peddana]. static const peddana = PartP.peddana; + + /// See [PartP.peddanaTextTheme]. static const peddanaTextTheme = PartP.peddanaTextTheme; + + /// See [PartP.peralta]. static const peralta = PartP.peralta; + + /// See [PartP.peraltaTextTheme]. static const peraltaTextTheme = PartP.peraltaTextTheme; + + /// See [PartP.permanentMarker]. static const permanentMarker = PartP.permanentMarker; + + /// See [PartP.permanentMarkerTextTheme]. static const permanentMarkerTextTheme = PartP.permanentMarkerTextTheme; + + /// See [PartP.petemoss]. static const petemoss = PartP.petemoss; + + /// See [PartP.petemossTextTheme]. static const petemossTextTheme = PartP.petemossTextTheme; + + /// See [PartP.petitFormalScript]. static const petitFormalScript = PartP.petitFormalScript; + + /// See [PartP.petitFormalScriptTextTheme]. static const petitFormalScriptTextTheme = PartP.petitFormalScriptTextTheme; + + /// See [PartP.petrona]. static const petrona = PartP.petrona; + + /// See [PartP.petronaTextTheme]. static const petronaTextTheme = PartP.petronaTextTheme; + + /// See [PartP.phetsarath]. static const phetsarath = PartP.phetsarath; + + /// See [PartP.phetsarathTextTheme]. static const phetsarathTextTheme = PartP.phetsarathTextTheme; + + /// See [PartP.philosopher]. static const philosopher = PartP.philosopher; + + /// See [PartP.philosopherTextTheme]. static const philosopherTextTheme = PartP.philosopherTextTheme; + + /// See [PartP.phudu]. static const phudu = PartP.phudu; + + /// See [PartP.phuduTextTheme]. static const phuduTextTheme = PartP.phuduTextTheme; + + /// See [PartP.piazzolla]. static const piazzolla = PartP.piazzolla; + + /// See [PartP.piazzollaTextTheme]. static const piazzollaTextTheme = PartP.piazzollaTextTheme; + + /// See [PartP.piedra]. static const piedra = PartP.piedra; + + /// See [PartP.piedraTextTheme]. static const piedraTextTheme = PartP.piedraTextTheme; + + /// See [PartP.pinyonScript]. static const pinyonScript = PartP.pinyonScript; + + /// See [PartP.pinyonScriptTextTheme]. static const pinyonScriptTextTheme = PartP.pinyonScriptTextTheme; + + /// See [PartP.pirataOne]. static const pirataOne = PartP.pirataOne; + + /// See [PartP.pirataOneTextTheme]. static const pirataOneTextTheme = PartP.pirataOneTextTheme; + + /// See [PartP.pixelifySans]. static const pixelifySans = PartP.pixelifySans; + + /// See [PartP.pixelifySansTextTheme]. static const pixelifySansTextTheme = PartP.pixelifySansTextTheme; + + /// See [PartP.plaster]. static const plaster = PartP.plaster; + + /// See [PartP.plasterTextTheme]. static const plasterTextTheme = PartP.plasterTextTheme; + + /// See [PartP.platypi]. static const platypi = PartP.platypi; + + /// See [PartP.platypiTextTheme]. static const platypiTextTheme = PartP.platypiTextTheme; + + /// See [PartP.play]. static const play = PartP.play; + + /// See [PartP.playTextTheme]. static const playTextTheme = PartP.playTextTheme; + + /// See [PartP.playball]. static const playball = PartP.playball; + + /// See [PartP.playballTextTheme]. static const playballTextTheme = PartP.playballTextTheme; + + /// See [PartP.playfair]. static const playfair = PartP.playfair; + + /// See [PartP.playfairTextTheme]. static const playfairTextTheme = PartP.playfairTextTheme; + + /// See [PartP.playfairDisplay]. static const playfairDisplay = PartP.playfairDisplay; + + /// See [PartP.playfairDisplayTextTheme]. static const playfairDisplayTextTheme = PartP.playfairDisplayTextTheme; + + /// See [PartP.playfairDisplaySc]. static const playfairDisplaySc = PartP.playfairDisplaySc; + + /// See [PartP.playfairDisplayScTextTheme]. static const playfairDisplayScTextTheme = PartP.playfairDisplayScTextTheme; + + /// See [PartP.playpenSans]. static const playpenSans = PartP.playpenSans; + + /// See [PartP.playpenSansTextTheme]. static const playpenSansTextTheme = PartP.playpenSansTextTheme; + + /// See [PartP.playpenSansArabic]. static const playpenSansArabic = PartP.playpenSansArabic; + + /// See [PartP.playpenSansArabicTextTheme]. static const playpenSansArabicTextTheme = PartP.playpenSansArabicTextTheme; + + /// See [PartP.playpenSansDeva]. static const playpenSansDeva = PartP.playpenSansDeva; + + /// See [PartP.playpenSansDevaTextTheme]. static const playpenSansDevaTextTheme = PartP.playpenSansDevaTextTheme; + + /// See [PartP.playpenSansHebrew]. static const playpenSansHebrew = PartP.playpenSansHebrew; + + /// See [PartP.playpenSansHebrewTextTheme]. static const playpenSansHebrewTextTheme = PartP.playpenSansHebrewTextTheme; + + /// See [PartP.playpenSansThai]. static const playpenSansThai = PartP.playpenSansThai; + + /// See [PartP.playpenSansThaiTextTheme]. static const playpenSansThaiTextTheme = PartP.playpenSansThaiTextTheme; + + /// See [PartP.playwriteAr]. static const playwriteAr = PartP.playwriteAr; + + /// See [PartP.playwriteArTextTheme]. static const playwriteArTextTheme = PartP.playwriteArTextTheme; + + /// See [PartP.playwriteArGuides]. static const playwriteArGuides = PartP.playwriteArGuides; + + /// See [PartP.playwriteArGuidesTextTheme]. static const playwriteArGuidesTextTheme = PartP.playwriteArGuidesTextTheme; + + /// See [PartP.playwriteAt]. static const playwriteAt = PartP.playwriteAt; + + /// See [PartP.playwriteAtTextTheme]. static const playwriteAtTextTheme = PartP.playwriteAtTextTheme; + + /// See [PartP.playwriteAtGuides]. static const playwriteAtGuides = PartP.playwriteAtGuides; + + /// See [PartP.playwriteAtGuidesTextTheme]. static const playwriteAtGuidesTextTheme = PartP.playwriteAtGuidesTextTheme; + + /// See [PartP.playwriteAuNsw]. static const playwriteAuNsw = PartP.playwriteAuNsw; + + /// See [PartP.playwriteAuNswTextTheme]. static const playwriteAuNswTextTheme = PartP.playwriteAuNswTextTheme; + + /// See [PartP.playwriteAuNswGuides]. static const playwriteAuNswGuides = PartP.playwriteAuNswGuides; + + /// See [PartP.playwriteAuNswGuidesTextTheme]. static const playwriteAuNswGuidesTextTheme = PartP.playwriteAuNswGuidesTextTheme; + + /// See [PartP.playwriteAuQld]. static const playwriteAuQld = PartP.playwriteAuQld; + + /// See [PartP.playwriteAuQldTextTheme]. static const playwriteAuQldTextTheme = PartP.playwriteAuQldTextTheme; + + /// See [PartP.playwriteAuQldGuides]. static const playwriteAuQldGuides = PartP.playwriteAuQldGuides; + + /// See [PartP.playwriteAuQldGuidesTextTheme]. static const playwriteAuQldGuidesTextTheme = PartP.playwriteAuQldGuidesTextTheme; + + /// See [PartP.playwriteAuSa]. static const playwriteAuSa = PartP.playwriteAuSa; + + /// See [PartP.playwriteAuSaTextTheme]. static const playwriteAuSaTextTheme = PartP.playwriteAuSaTextTheme; + + /// See [PartP.playwriteAuSaGuides]. static const playwriteAuSaGuides = PartP.playwriteAuSaGuides; + + /// See [PartP.playwriteAuSaGuidesTextTheme]. static const playwriteAuSaGuidesTextTheme = PartP.playwriteAuSaGuidesTextTheme; + + /// See [PartP.playwriteAuTas]. static const playwriteAuTas = PartP.playwriteAuTas; + + /// See [PartP.playwriteAuTasTextTheme]. static const playwriteAuTasTextTheme = PartP.playwriteAuTasTextTheme; + + /// See [PartP.playwriteAuTasGuides]. static const playwriteAuTasGuides = PartP.playwriteAuTasGuides; + + /// See [PartP.playwriteAuTasGuidesTextTheme]. static const playwriteAuTasGuidesTextTheme = PartP.playwriteAuTasGuidesTextTheme; + + /// See [PartP.playwriteAuVic]. static const playwriteAuVic = PartP.playwriteAuVic; + + /// See [PartP.playwriteAuVicTextTheme]. static const playwriteAuVicTextTheme = PartP.playwriteAuVicTextTheme; + + /// See [PartP.playwriteAuVicGuides]. static const playwriteAuVicGuides = PartP.playwriteAuVicGuides; + + /// See [PartP.playwriteAuVicGuidesTextTheme]. static const playwriteAuVicGuidesTextTheme = PartP.playwriteAuVicGuidesTextTheme; + + /// See [PartP.playwriteBeVlg]. static const playwriteBeVlg = PartP.playwriteBeVlg; + + /// See [PartP.playwriteBeVlgTextTheme]. static const playwriteBeVlgTextTheme = PartP.playwriteBeVlgTextTheme; + + /// See [PartP.playwriteBeVlgGuides]. static const playwriteBeVlgGuides = PartP.playwriteBeVlgGuides; + + /// See [PartP.playwriteBeVlgGuidesTextTheme]. static const playwriteBeVlgGuidesTextTheme = PartP.playwriteBeVlgGuidesTextTheme; + + /// See [PartP.playwriteBeWal]. static const playwriteBeWal = PartP.playwriteBeWal; + + /// See [PartP.playwriteBeWalTextTheme]. static const playwriteBeWalTextTheme = PartP.playwriteBeWalTextTheme; + + /// See [PartP.playwriteBeWalGuides]. static const playwriteBeWalGuides = PartP.playwriteBeWalGuides; + + /// See [PartP.playwriteBeWalGuidesTextTheme]. static const playwriteBeWalGuidesTextTheme = PartP.playwriteBeWalGuidesTextTheme; + + /// See [PartP.playwriteBr]. static const playwriteBr = PartP.playwriteBr; + + /// See [PartP.playwriteBrTextTheme]. static const playwriteBrTextTheme = PartP.playwriteBrTextTheme; + + /// See [PartP.playwriteBrGuides]. static const playwriteBrGuides = PartP.playwriteBrGuides; + + /// See [PartP.playwriteBrGuidesTextTheme]. static const playwriteBrGuidesTextTheme = PartP.playwriteBrGuidesTextTheme; + + /// See [PartP.playwriteCa]. static const playwriteCa = PartP.playwriteCa; + + /// See [PartP.playwriteCaTextTheme]. static const playwriteCaTextTheme = PartP.playwriteCaTextTheme; + + /// See [PartP.playwriteCaGuides]. static const playwriteCaGuides = PartP.playwriteCaGuides; + + /// See [PartP.playwriteCaGuidesTextTheme]. static const playwriteCaGuidesTextTheme = PartP.playwriteCaGuidesTextTheme; + + /// See [PartP.playwriteCl]. static const playwriteCl = PartP.playwriteCl; + + /// See [PartP.playwriteClTextTheme]. static const playwriteClTextTheme = PartP.playwriteClTextTheme; + + /// See [PartP.playwriteClGuides]. static const playwriteClGuides = PartP.playwriteClGuides; + + /// See [PartP.playwriteClGuidesTextTheme]. static const playwriteClGuidesTextTheme = PartP.playwriteClGuidesTextTheme; + + /// See [PartP.playwriteCo]. static const playwriteCo = PartP.playwriteCo; + + /// See [PartP.playwriteCoTextTheme]. static const playwriteCoTextTheme = PartP.playwriteCoTextTheme; + + /// See [PartP.playwriteCoGuides]. static const playwriteCoGuides = PartP.playwriteCoGuides; + + /// See [PartP.playwriteCoGuidesTextTheme]. static const playwriteCoGuidesTextTheme = PartP.playwriteCoGuidesTextTheme; + + /// See [PartP.playwriteCu]. static const playwriteCu = PartP.playwriteCu; + + /// See [PartP.playwriteCuTextTheme]. static const playwriteCuTextTheme = PartP.playwriteCuTextTheme; + + /// See [PartP.playwriteCuGuides]. static const playwriteCuGuides = PartP.playwriteCuGuides; + + /// See [PartP.playwriteCuGuidesTextTheme]. static const playwriteCuGuidesTextTheme = PartP.playwriteCuGuidesTextTheme; + + /// See [PartP.playwriteCz]. static const playwriteCz = PartP.playwriteCz; + + /// See [PartP.playwriteCzTextTheme]. static const playwriteCzTextTheme = PartP.playwriteCzTextTheme; + + /// See [PartP.playwriteCzGuides]. static const playwriteCzGuides = PartP.playwriteCzGuides; + + /// See [PartP.playwriteCzGuidesTextTheme]. static const playwriteCzGuidesTextTheme = PartP.playwriteCzGuidesTextTheme; + + /// See [PartP.playwriteDeGrund]. static const playwriteDeGrund = PartP.playwriteDeGrund; + + /// See [PartP.playwriteDeGrundTextTheme]. static const playwriteDeGrundTextTheme = PartP.playwriteDeGrundTextTheme; + + /// See [PartP.playwriteDeGrundGuides]. static const playwriteDeGrundGuides = PartP.playwriteDeGrundGuides; + + /// See [PartP.playwriteDeGrundGuidesTextTheme]. static const playwriteDeGrundGuidesTextTheme = PartP.playwriteDeGrundGuidesTextTheme; + + /// See [PartP.playwriteDeLa]. static const playwriteDeLa = PartP.playwriteDeLa; + + /// See [PartP.playwriteDeLaTextTheme]. static const playwriteDeLaTextTheme = PartP.playwriteDeLaTextTheme; + + /// See [PartP.playwriteDeLaGuides]. static const playwriteDeLaGuides = PartP.playwriteDeLaGuides; + + /// See [PartP.playwriteDeLaGuidesTextTheme]. static const playwriteDeLaGuidesTextTheme = PartP.playwriteDeLaGuidesTextTheme; + + /// See [PartP.playwriteDeSas]. static const playwriteDeSas = PartP.playwriteDeSas; + + /// See [PartP.playwriteDeSasTextTheme]. static const playwriteDeSasTextTheme = PartP.playwriteDeSasTextTheme; + + /// See [PartP.playwriteDeSasGuides]. static const playwriteDeSasGuides = PartP.playwriteDeSasGuides; + + /// See [PartP.playwriteDeSasGuidesTextTheme]. static const playwriteDeSasGuidesTextTheme = PartP.playwriteDeSasGuidesTextTheme; + + /// See [PartP.playwriteDeVa]. static const playwriteDeVa = PartP.playwriteDeVa; + + /// See [PartP.playwriteDeVaTextTheme]. static const playwriteDeVaTextTheme = PartP.playwriteDeVaTextTheme; + + /// See [PartP.playwriteDeVaGuides]. static const playwriteDeVaGuides = PartP.playwriteDeVaGuides; + + /// See [PartP.playwriteDeVaGuidesTextTheme]. static const playwriteDeVaGuidesTextTheme = PartP.playwriteDeVaGuidesTextTheme; + + /// See [PartP.playwriteDkLoopet]. static const playwriteDkLoopet = PartP.playwriteDkLoopet; + + /// See [PartP.playwriteDkLoopetTextTheme]. static const playwriteDkLoopetTextTheme = PartP.playwriteDkLoopetTextTheme; + + /// See [PartP.playwriteDkLoopetGuides]. static const playwriteDkLoopetGuides = PartP.playwriteDkLoopetGuides; + + /// See [PartP.playwriteDkLoopetGuidesTextTheme]. static const playwriteDkLoopetGuidesTextTheme = PartP.playwriteDkLoopetGuidesTextTheme; + + /// See [PartP.playwriteDkUloopet]. static const playwriteDkUloopet = PartP.playwriteDkUloopet; + + /// See [PartP.playwriteDkUloopetTextTheme]. static const playwriteDkUloopetTextTheme = PartP.playwriteDkUloopetTextTheme; + + /// See [PartP.playwriteDkUloopetGuides]. static const playwriteDkUloopetGuides = PartP.playwriteDkUloopetGuides; + + /// See [PartP.playwriteDkUloopetGuidesTextTheme]. static const playwriteDkUloopetGuidesTextTheme = PartP.playwriteDkUloopetGuidesTextTheme; + + /// See [PartP.playwriteEs]. static const playwriteEs = PartP.playwriteEs; + + /// See [PartP.playwriteEsTextTheme]. static const playwriteEsTextTheme = PartP.playwriteEsTextTheme; + + /// See [PartP.playwriteEsDeco]. static const playwriteEsDeco = PartP.playwriteEsDeco; + + /// See [PartP.playwriteEsDecoTextTheme]. static const playwriteEsDecoTextTheme = PartP.playwriteEsDecoTextTheme; + + /// See [PartP.playwriteEsDecoGuides]. static const playwriteEsDecoGuides = PartP.playwriteEsDecoGuides; + + /// See [PartP.playwriteEsDecoGuidesTextTheme]. static const playwriteEsDecoGuidesTextTheme = PartP.playwriteEsDecoGuidesTextTheme; + + /// See [PartP.playwriteEsGuides]. static const playwriteEsGuides = PartP.playwriteEsGuides; + + /// See [PartP.playwriteEsGuidesTextTheme]. static const playwriteEsGuidesTextTheme = PartP.playwriteEsGuidesTextTheme; + + /// See [PartP.playwriteFrModerne]. static const playwriteFrModerne = PartP.playwriteFrModerne; + + /// See [PartP.playwriteFrModerneTextTheme]. static const playwriteFrModerneTextTheme = PartP.playwriteFrModerneTextTheme; + + /// See [PartP.playwriteFrModerneGuides]. static const playwriteFrModerneGuides = PartP.playwriteFrModerneGuides; + + /// See [PartP.playwriteFrModerneGuidesTextTheme]. static const playwriteFrModerneGuidesTextTheme = PartP.playwriteFrModerneGuidesTextTheme; + + /// See [PartP.playwriteFrTrad]. static const playwriteFrTrad = PartP.playwriteFrTrad; + + /// See [PartP.playwriteFrTradTextTheme]. static const playwriteFrTradTextTheme = PartP.playwriteFrTradTextTheme; + + /// See [PartP.playwriteFrTradGuides]. static const playwriteFrTradGuides = PartP.playwriteFrTradGuides; + + /// See [PartP.playwriteFrTradGuidesTextTheme]. static const playwriteFrTradGuidesTextTheme = PartP.playwriteFrTradGuidesTextTheme; + + /// See [PartP.playwriteGbJ]. static const playwriteGbJ = PartP.playwriteGbJ; + + /// See [PartP.playwriteGbJTextTheme]. static const playwriteGbJTextTheme = PartP.playwriteGbJTextTheme; + + /// See [PartP.playwriteGbJGuides]. static const playwriteGbJGuides = PartP.playwriteGbJGuides; + + /// See [PartP.playwriteGbJGuidesTextTheme]. static const playwriteGbJGuidesTextTheme = PartP.playwriteGbJGuidesTextTheme; + + /// See [PartP.playwriteGbS]. static const playwriteGbS = PartP.playwriteGbS; + + /// See [PartP.playwriteGbSTextTheme]. static const playwriteGbSTextTheme = PartP.playwriteGbSTextTheme; + + /// See [PartP.playwriteGbSGuides]. static const playwriteGbSGuides = PartP.playwriteGbSGuides; + + /// See [PartP.playwriteGbSGuidesTextTheme]. static const playwriteGbSGuidesTextTheme = PartP.playwriteGbSGuidesTextTheme; + + /// See [PartP.playwriteHr]. static const playwriteHr = PartP.playwriteHr; + + /// See [PartP.playwriteHrTextTheme]. static const playwriteHrTextTheme = PartP.playwriteHrTextTheme; + + /// See [PartP.playwriteHrGuides]. static const playwriteHrGuides = PartP.playwriteHrGuides; + + /// See [PartP.playwriteHrGuidesTextTheme]. static const playwriteHrGuidesTextTheme = PartP.playwriteHrGuidesTextTheme; + + /// See [PartP.playwriteHrLijeva]. static const playwriteHrLijeva = PartP.playwriteHrLijeva; + + /// See [PartP.playwriteHrLijevaTextTheme]. static const playwriteHrLijevaTextTheme = PartP.playwriteHrLijevaTextTheme; + + /// See [PartP.playwriteHrLijevaGuides]. static const playwriteHrLijevaGuides = PartP.playwriteHrLijevaGuides; + + /// See [PartP.playwriteHrLijevaGuidesTextTheme]. static const playwriteHrLijevaGuidesTextTheme = PartP.playwriteHrLijevaGuidesTextTheme; + + /// See [PartP.playwriteHu]. static const playwriteHu = PartP.playwriteHu; + + /// See [PartP.playwriteHuTextTheme]. static const playwriteHuTextTheme = PartP.playwriteHuTextTheme; + + /// See [PartP.playwriteHuGuides]. static const playwriteHuGuides = PartP.playwriteHuGuides; + + /// See [PartP.playwriteHuGuidesTextTheme]. static const playwriteHuGuidesTextTheme = PartP.playwriteHuGuidesTextTheme; + + /// See [PartP.playwriteId]. static const playwriteId = PartP.playwriteId; + + /// See [PartP.playwriteIdTextTheme]. static const playwriteIdTextTheme = PartP.playwriteIdTextTheme; + + /// See [PartP.playwriteIdGuides]. static const playwriteIdGuides = PartP.playwriteIdGuides; + + /// See [PartP.playwriteIdGuidesTextTheme]. static const playwriteIdGuidesTextTheme = PartP.playwriteIdGuidesTextTheme; + + /// See [PartP.playwriteIe]. static const playwriteIe = PartP.playwriteIe; + + /// See [PartP.playwriteIeTextTheme]. static const playwriteIeTextTheme = PartP.playwriteIeTextTheme; + + /// See [PartP.playwriteIeGuides]. static const playwriteIeGuides = PartP.playwriteIeGuides; + + /// See [PartP.playwriteIeGuidesTextTheme]. static const playwriteIeGuidesTextTheme = PartP.playwriteIeGuidesTextTheme; + + /// See [PartP.playwriteIn]. static const playwriteIn = PartP.playwriteIn; + + /// See [PartP.playwriteInTextTheme]. static const playwriteInTextTheme = PartP.playwriteInTextTheme; + + /// See [PartP.playwriteInGuides]. static const playwriteInGuides = PartP.playwriteInGuides; + + /// See [PartP.playwriteInGuidesTextTheme]. static const playwriteInGuidesTextTheme = PartP.playwriteInGuidesTextTheme; + + /// See [PartP.playwriteIs]. static const playwriteIs = PartP.playwriteIs; + + /// See [PartP.playwriteIsTextTheme]. static const playwriteIsTextTheme = PartP.playwriteIsTextTheme; + + /// See [PartP.playwriteIsGuides]. static const playwriteIsGuides = PartP.playwriteIsGuides; + + /// See [PartP.playwriteIsGuidesTextTheme]. static const playwriteIsGuidesTextTheme = PartP.playwriteIsGuidesTextTheme; + + /// See [PartP.playwriteItModerna]. static const playwriteItModerna = PartP.playwriteItModerna; + + /// See [PartP.playwriteItModernaTextTheme]. static const playwriteItModernaTextTheme = PartP.playwriteItModernaTextTheme; + + /// See [PartP.playwriteItModernaGuides]. static const playwriteItModernaGuides = PartP.playwriteItModernaGuides; + + /// See [PartP.playwriteItModernaGuidesTextTheme]. static const playwriteItModernaGuidesTextTheme = PartP.playwriteItModernaGuidesTextTheme; + + /// See [PartP.playwriteItTrad]. static const playwriteItTrad = PartP.playwriteItTrad; + + /// See [PartP.playwriteItTradTextTheme]. static const playwriteItTradTextTheme = PartP.playwriteItTradTextTheme; + + /// See [PartP.playwriteItTradGuides]. static const playwriteItTradGuides = PartP.playwriteItTradGuides; + + /// See [PartP.playwriteItTradGuidesTextTheme]. static const playwriteItTradGuidesTextTheme = PartP.playwriteItTradGuidesTextTheme; + + /// See [PartP.playwriteMx]. static const playwriteMx = PartP.playwriteMx; + + /// See [PartP.playwriteMxTextTheme]. static const playwriteMxTextTheme = PartP.playwriteMxTextTheme; + + /// See [PartP.playwriteMxGuides]. static const playwriteMxGuides = PartP.playwriteMxGuides; + + /// See [PartP.playwriteMxGuidesTextTheme]. static const playwriteMxGuidesTextTheme = PartP.playwriteMxGuidesTextTheme; + + /// See [PartP.playwriteNgModern]. static const playwriteNgModern = PartP.playwriteNgModern; + + /// See [PartP.playwriteNgModernTextTheme]. static const playwriteNgModernTextTheme = PartP.playwriteNgModernTextTheme; + + /// See [PartP.playwriteNgModernGuides]. static const playwriteNgModernGuides = PartP.playwriteNgModernGuides; + + /// See [PartP.playwriteNgModernGuidesTextTheme]. static const playwriteNgModernGuidesTextTheme = PartP.playwriteNgModernGuidesTextTheme; + + /// See [PartP.playwriteNl]. static const playwriteNl = PartP.playwriteNl; + + /// See [PartP.playwriteNlTextTheme]. static const playwriteNlTextTheme = PartP.playwriteNlTextTheme; + + /// See [PartP.playwriteNlGuides]. static const playwriteNlGuides = PartP.playwriteNlGuides; + + /// See [PartP.playwriteNlGuidesTextTheme]. static const playwriteNlGuidesTextTheme = PartP.playwriteNlGuidesTextTheme; + + /// See [PartP.playwriteNo]. static const playwriteNo = PartP.playwriteNo; + + /// See [PartP.playwriteNoTextTheme]. static const playwriteNoTextTheme = PartP.playwriteNoTextTheme; + + /// See [PartP.playwriteNoGuides]. static const playwriteNoGuides = PartP.playwriteNoGuides; + + /// See [PartP.playwriteNoGuidesTextTheme]. static const playwriteNoGuidesTextTheme = PartP.playwriteNoGuidesTextTheme; + + /// See [PartP.playwriteNz]. static const playwriteNz = PartP.playwriteNz; + + /// See [PartP.playwriteNzTextTheme]. static const playwriteNzTextTheme = PartP.playwriteNzTextTheme; + + /// See [PartP.playwriteNzGuides]. static const playwriteNzGuides = PartP.playwriteNzGuides; + + /// See [PartP.playwriteNzGuidesTextTheme]. static const playwriteNzGuidesTextTheme = PartP.playwriteNzGuidesTextTheme; + + /// See [PartP.playwritePe]. static const playwritePe = PartP.playwritePe; + + /// See [PartP.playwritePeTextTheme]. static const playwritePeTextTheme = PartP.playwritePeTextTheme; + + /// See [PartP.playwritePeGuides]. static const playwritePeGuides = PartP.playwritePeGuides; + + /// See [PartP.playwritePeGuidesTextTheme]. static const playwritePeGuidesTextTheme = PartP.playwritePeGuidesTextTheme; + + /// See [PartP.playwritePl]. static const playwritePl = PartP.playwritePl; + + /// See [PartP.playwritePlTextTheme]. static const playwritePlTextTheme = PartP.playwritePlTextTheme; + + /// See [PartP.playwritePlGuides]. static const playwritePlGuides = PartP.playwritePlGuides; + + /// See [PartP.playwritePlGuidesTextTheme]. static const playwritePlGuidesTextTheme = PartP.playwritePlGuidesTextTheme; + + /// See [PartP.playwritePt]. static const playwritePt = PartP.playwritePt; + + /// See [PartP.playwritePtTextTheme]. static const playwritePtTextTheme = PartP.playwritePtTextTheme; + + /// See [PartP.playwritePtGuides]. static const playwritePtGuides = PartP.playwritePtGuides; + + /// See [PartP.playwritePtGuidesTextTheme]. static const playwritePtGuidesTextTheme = PartP.playwritePtGuidesTextTheme; + + /// See [PartP.playwriteRo]. static const playwriteRo = PartP.playwriteRo; + + /// See [PartP.playwriteRoTextTheme]. static const playwriteRoTextTheme = PartP.playwriteRoTextTheme; + + /// See [PartP.playwriteRoGuides]. static const playwriteRoGuides = PartP.playwriteRoGuides; + + /// See [PartP.playwriteRoGuidesTextTheme]. static const playwriteRoGuidesTextTheme = PartP.playwriteRoGuidesTextTheme; + + /// See [PartP.playwriteSk]. static const playwriteSk = PartP.playwriteSk; + + /// See [PartP.playwriteSkTextTheme]. static const playwriteSkTextTheme = PartP.playwriteSkTextTheme; + + /// See [PartP.playwriteSkGuides]. static const playwriteSkGuides = PartP.playwriteSkGuides; + + /// See [PartP.playwriteSkGuidesTextTheme]. static const playwriteSkGuidesTextTheme = PartP.playwriteSkGuidesTextTheme; + + /// See [PartP.playwriteTz]. static const playwriteTz = PartP.playwriteTz; + + /// See [PartP.playwriteTzTextTheme]. static const playwriteTzTextTheme = PartP.playwriteTzTextTheme; + + /// See [PartP.playwriteTzGuides]. static const playwriteTzGuides = PartP.playwriteTzGuides; + + /// See [PartP.playwriteTzGuidesTextTheme]. static const playwriteTzGuidesTextTheme = PartP.playwriteTzGuidesTextTheme; + + /// See [PartP.playwriteUsModern]. static const playwriteUsModern = PartP.playwriteUsModern; + + /// See [PartP.playwriteUsModernTextTheme]. static const playwriteUsModernTextTheme = PartP.playwriteUsModernTextTheme; + + /// See [PartP.playwriteUsModernGuides]. static const playwriteUsModernGuides = PartP.playwriteUsModernGuides; + + /// See [PartP.playwriteUsModernGuidesTextTheme]. static const playwriteUsModernGuidesTextTheme = PartP.playwriteUsModernGuidesTextTheme; + + /// See [PartP.playwriteUsTrad]. static const playwriteUsTrad = PartP.playwriteUsTrad; + + /// See [PartP.playwriteUsTradTextTheme]. static const playwriteUsTradTextTheme = PartP.playwriteUsTradTextTheme; + + /// See [PartP.playwriteUsTradGuides]. static const playwriteUsTradGuides = PartP.playwriteUsTradGuides; + + /// See [PartP.playwriteUsTradGuidesTextTheme]. static const playwriteUsTradGuidesTextTheme = PartP.playwriteUsTradGuidesTextTheme; + + /// See [PartP.playwriteVn]. static const playwriteVn = PartP.playwriteVn; + + /// See [PartP.playwriteVnTextTheme]. static const playwriteVnTextTheme = PartP.playwriteVnTextTheme; + + /// See [PartP.playwriteVnGuides]. static const playwriteVnGuides = PartP.playwriteVnGuides; + + /// See [PartP.playwriteVnGuidesTextTheme]. static const playwriteVnGuidesTextTheme = PartP.playwriteVnGuidesTextTheme; + + /// See [PartP.playwriteZa]. static const playwriteZa = PartP.playwriteZa; + + /// See [PartP.playwriteZaTextTheme]. static const playwriteZaTextTheme = PartP.playwriteZaTextTheme; + + /// See [PartP.playwriteZaGuides]. static const playwriteZaGuides = PartP.playwriteZaGuides; + + /// See [PartP.playwriteZaGuidesTextTheme]. static const playwriteZaGuidesTextTheme = PartP.playwriteZaGuidesTextTheme; + + /// See [PartP.plusJakartaSans]. static const plusJakartaSans = PartP.plusJakartaSans; + + /// See [PartP.plusJakartaSansTextTheme]. static const plusJakartaSansTextTheme = PartP.plusJakartaSansTextTheme; + + /// See [PartP.pochaevsk]. static const pochaevsk = PartP.pochaevsk; + + /// See [PartP.pochaevskTextTheme]. static const pochaevskTextTheme = PartP.pochaevskTextTheme; + + /// See [PartP.podkova]. static const podkova = PartP.podkova; + + /// See [PartP.podkovaTextTheme]. static const podkovaTextTheme = PartP.podkovaTextTheme; + + /// See [PartP.poetsenOne]. static const poetsenOne = PartP.poetsenOne; + + /// See [PartP.poetsenOneTextTheme]. static const poetsenOneTextTheme = PartP.poetsenOneTextTheme; + + /// See [PartP.poiretOne]. static const poiretOne = PartP.poiretOne; + + /// See [PartP.poiretOneTextTheme]. static const poiretOneTextTheme = PartP.poiretOneTextTheme; + + /// See [PartP.pollerOne]. static const pollerOne = PartP.pollerOne; + + /// See [PartP.pollerOneTextTheme]. static const pollerOneTextTheme = PartP.pollerOneTextTheme; + + /// See [PartP.poltawskiNowy]. static const poltawskiNowy = PartP.poltawskiNowy; + + /// See [PartP.poltawskiNowyTextTheme]. static const poltawskiNowyTextTheme = PartP.poltawskiNowyTextTheme; + + /// See [PartP.poly]. static const poly = PartP.poly; + + /// See [PartP.polyTextTheme]. static const polyTextTheme = PartP.polyTextTheme; + + /// See [PartP.pompiere]. static const pompiere = PartP.pompiere; + + /// See [PartP.pompiereTextTheme]. static const pompiereTextTheme = PartP.pompiereTextTheme; + + /// See [PartP.ponnala]. static const ponnala = PartP.ponnala; + + /// See [PartP.ponnalaTextTheme]. static const ponnalaTextTheme = PartP.ponnalaTextTheme; + + /// See [PartP.ponomar]. static const ponomar = PartP.ponomar; + + /// See [PartP.ponomarTextTheme]. static const ponomarTextTheme = PartP.ponomarTextTheme; + + /// See [PartP.pontanoSans]. static const pontanoSans = PartP.pontanoSans; + + /// See [PartP.pontanoSansTextTheme]. static const pontanoSansTextTheme = PartP.pontanoSansTextTheme; + + /// See [PartP.poorStory]. static const poorStory = PartP.poorStory; + + /// See [PartP.poorStoryTextTheme]. static const poorStoryTextTheme = PartP.poorStoryTextTheme; + + /// See [PartP.poppins]. static const poppins = PartP.poppins; + + /// See [PartP.poppinsTextTheme]. static const poppinsTextTheme = PartP.poppinsTextTheme; + + /// See [PartP.portLligatSans]. static const portLligatSans = PartP.portLligatSans; + + /// See [PartP.portLligatSansTextTheme]. static const portLligatSansTextTheme = PartP.portLligatSansTextTheme; + + /// See [PartP.portLligatSlab]. static const portLligatSlab = PartP.portLligatSlab; + + /// See [PartP.portLligatSlabTextTheme]. static const portLligatSlabTextTheme = PartP.portLligatSlabTextTheme; + + /// See [PartP.pottaOne]. static const pottaOne = PartP.pottaOne; + + /// See [PartP.pottaOneTextTheme]. static const pottaOneTextTheme = PartP.pottaOneTextTheme; + + /// See [PartP.pragatiNarrow]. static const pragatiNarrow = PartP.pragatiNarrow; + + /// See [PartP.pragatiNarrowTextTheme]. static const pragatiNarrowTextTheme = PartP.pragatiNarrowTextTheme; + + /// See [PartP.praise]. static const praise = PartP.praise; + + /// See [PartP.praiseTextTheme]. static const praiseTextTheme = PartP.praiseTextTheme; + + /// See [PartP.prata]. static const prata = PartP.prata; + + /// See [PartP.prataTextTheme]. static const prataTextTheme = PartP.prataTextTheme; + + /// See [PartP.preahvihear]. static const preahvihear = PartP.preahvihear; + + /// See [PartP.preahvihearTextTheme]. static const preahvihearTextTheme = PartP.preahvihearTextTheme; + + /// See [PartP.pressStart2p]. static const pressStart2p = PartP.pressStart2p; + + /// See [PartP.pressStart2pTextTheme]. static const pressStart2pTextTheme = PartP.pressStart2pTextTheme; + + /// See [PartP.pridi]. static const pridi = PartP.pridi; + + /// See [PartP.pridiTextTheme]. static const pridiTextTheme = PartP.pridiTextTheme; + + /// See [PartP.princessSofia]. static const princessSofia = PartP.princessSofia; + + /// See [PartP.princessSofiaTextTheme]. static const princessSofiaTextTheme = PartP.princessSofiaTextTheme; + + /// See [PartP.prociono]. static const prociono = PartP.prociono; + + /// See [PartP.procionoTextTheme]. static const procionoTextTheme = PartP.procionoTextTheme; + + /// See [PartP.prompt]. static const prompt = PartP.prompt; + + /// See [PartP.promptTextTheme]. static const promptTextTheme = PartP.promptTextTheme; + + /// See [PartP.prostoOne]. static const prostoOne = PartP.prostoOne; + + /// See [PartP.prostoOneTextTheme]. static const prostoOneTextTheme = PartP.prostoOneTextTheme; + + /// See [PartP.protestGuerrilla]. static const protestGuerrilla = PartP.protestGuerrilla; + + /// See [PartP.protestGuerrillaTextTheme]. static const protestGuerrillaTextTheme = PartP.protestGuerrillaTextTheme; + + /// See [PartP.protestRevolution]. static const protestRevolution = PartP.protestRevolution; + + /// See [PartP.protestRevolutionTextTheme]. static const protestRevolutionTextTheme = PartP.protestRevolutionTextTheme; + + /// See [PartP.protestRiot]. static const protestRiot = PartP.protestRiot; + + /// See [PartP.protestRiotTextTheme]. static const protestRiotTextTheme = PartP.protestRiotTextTheme; + + /// See [PartP.protestStrike]. static const protestStrike = PartP.protestStrike; + + /// See [PartP.protestStrikeTextTheme]. static const protestStrikeTextTheme = PartP.protestStrikeTextTheme; + + /// See [PartP.prozaLibre]. static const prozaLibre = PartP.prozaLibre; + + /// See [PartP.prozaLibreTextTheme]. static const prozaLibreTextTheme = PartP.prozaLibreTextTheme; + + /// See [PartP.publicSans]. static const publicSans = PartP.publicSans; + + /// See [PartP.publicSansTextTheme]. static const publicSansTextTheme = PartP.publicSansTextTheme; + + /// See [PartP.puppiesPlay]. static const puppiesPlay = PartP.puppiesPlay; + + /// See [PartP.puppiesPlayTextTheme]. static const puppiesPlayTextTheme = PartP.puppiesPlayTextTheme; + + /// See [PartP.puritan]. static const puritan = PartP.puritan; + + /// See [PartP.puritanTextTheme]. static const puritanTextTheme = PartP.puritanTextTheme; + + /// See [PartP.purplePurse]. static const purplePurse = PartP.purplePurse; + + /// See [PartP.purplePurseTextTheme]. static const purplePurseTextTheme = PartP.purplePurseTextTheme; + + /// See [PartQ.qahiri]. static const qahiri = PartQ.qahiri; + + /// See [PartQ.qahiriTextTheme]. static const qahiriTextTheme = PartQ.qahiriTextTheme; + + /// See [PartQ.quando]. static const quando = PartQ.quando; + + /// See [PartQ.quandoTextTheme]. static const quandoTextTheme = PartQ.quandoTextTheme; + + /// See [PartQ.quantico]. static const quantico = PartQ.quantico; + + /// See [PartQ.quanticoTextTheme]. static const quanticoTextTheme = PartQ.quanticoTextTheme; + + /// See [PartQ.quattrocento]. static const quattrocento = PartQ.quattrocento; + + /// See [PartQ.quattrocentoTextTheme]. static const quattrocentoTextTheme = PartQ.quattrocentoTextTheme; + + /// See [PartQ.quattrocentoSans]. static const quattrocentoSans = PartQ.quattrocentoSans; + + /// See [PartQ.quattrocentoSansTextTheme]. static const quattrocentoSansTextTheme = PartQ.quattrocentoSansTextTheme; + + /// See [PartQ.questrial]. static const questrial = PartQ.questrial; + + /// See [PartQ.questrialTextTheme]. static const questrialTextTheme = PartQ.questrialTextTheme; + + /// See [PartQ.quicksand]. static const quicksand = PartQ.quicksand; + + /// See [PartQ.quicksandTextTheme]. static const quicksandTextTheme = PartQ.quicksandTextTheme; + + /// See [PartQ.quintessential]. static const quintessential = PartQ.quintessential; + + /// See [PartQ.quintessentialTextTheme]. static const quintessentialTextTheme = PartQ.quintessentialTextTheme; + + /// See [PartQ.qwigley]. static const qwigley = PartQ.qwigley; + + /// See [PartQ.qwigleyTextTheme]. static const qwigleyTextTheme = PartQ.qwigleyTextTheme; + + /// See [PartQ.qwitcherGrypen]. static const qwitcherGrypen = PartQ.qwitcherGrypen; + + /// See [PartQ.qwitcherGrypenTextTheme]. static const qwitcherGrypenTextTheme = PartQ.qwitcherGrypenTextTheme; + + /// See [PartR.rem]. static const rem = PartR.rem; + + /// See [PartR.remTextTheme]. static const remTextTheme = PartR.remTextTheme; + + /// See [PartR.racingSansOne]. static const racingSansOne = PartR.racingSansOne; + + /// See [PartR.racingSansOneTextTheme]. static const racingSansOneTextTheme = PartR.racingSansOneTextTheme; + + /// See [PartR.radioCanada]. static const radioCanada = PartR.radioCanada; + + /// See [PartR.radioCanadaTextTheme]. static const radioCanadaTextTheme = PartR.radioCanadaTextTheme; + + /// See [PartR.radioCanadaBig]. static const radioCanadaBig = PartR.radioCanadaBig; + + /// See [PartR.radioCanadaBigTextTheme]. static const radioCanadaBigTextTheme = PartR.radioCanadaBigTextTheme; + + /// See [PartR.radley]. static const radley = PartR.radley; + + /// See [PartR.radleyTextTheme]. static const radleyTextTheme = PartR.radleyTextTheme; + + /// See [PartR.rajdhani]. static const rajdhani = PartR.rajdhani; + + /// See [PartR.rajdhaniTextTheme]. static const rajdhaniTextTheme = PartR.rajdhaniTextTheme; + + /// See [PartR.rakkas]. static const rakkas = PartR.rakkas; + + /// See [PartR.rakkasTextTheme]. static const rakkasTextTheme = PartR.rakkasTextTheme; + + /// See [PartR.raleway]. static const raleway = PartR.raleway; + + /// See [PartR.ralewayTextTheme]. static const ralewayTextTheme = PartR.ralewayTextTheme; + + /// See [PartR.ralewayDots]. static const ralewayDots = PartR.ralewayDots; + + /// See [PartR.ralewayDotsTextTheme]. static const ralewayDotsTextTheme = PartR.ralewayDotsTextTheme; + + /// See [PartR.ramabhadra]. static const ramabhadra = PartR.ramabhadra; + + /// See [PartR.ramabhadraTextTheme]. static const ramabhadraTextTheme = PartR.ramabhadraTextTheme; + + /// See [PartR.ramaraja]. static const ramaraja = PartR.ramaraja; + + /// See [PartR.ramarajaTextTheme]. static const ramarajaTextTheme = PartR.ramarajaTextTheme; + + /// See [PartR.rambla]. static const rambla = PartR.rambla; + + /// See [PartR.ramblaTextTheme]. static const ramblaTextTheme = PartR.ramblaTextTheme; + + /// See [PartR.rammettoOne]. static const rammettoOne = PartR.rammettoOne; + + /// See [PartR.rammettoOneTextTheme]. static const rammettoOneTextTheme = PartR.rammettoOneTextTheme; + + /// See [PartR.rampartOne]. static const rampartOne = PartR.rampartOne; + + /// See [PartR.rampartOneTextTheme]. static const rampartOneTextTheme = PartR.rampartOneTextTheme; + + /// See [PartR.ranchers]. static const ranchers = PartR.ranchers; + + /// See [PartR.ranchersTextTheme]. static const ranchersTextTheme = PartR.ranchersTextTheme; + + /// See [PartR.rancho]. static const rancho = PartR.rancho; + + /// See [PartR.ranchoTextTheme]. static const ranchoTextTheme = PartR.ranchoTextTheme; + + /// See [PartR.ranga]. static const ranga = PartR.ranga; + + /// See [PartR.rangaTextTheme]. static const rangaTextTheme = PartR.rangaTextTheme; + + /// See [PartR.rasa]. static const rasa = PartR.rasa; + + /// See [PartR.rasaTextTheme]. static const rasaTextTheme = PartR.rasaTextTheme; + + /// See [PartR.rationale]. static const rationale = PartR.rationale; + + /// See [PartR.rationaleTextTheme]. static const rationaleTextTheme = PartR.rationaleTextTheme; + + /// See [PartR.raviPrakash]. static const raviPrakash = PartR.raviPrakash; + + /// See [PartR.raviPrakashTextTheme]. static const raviPrakashTextTheme = PartR.raviPrakashTextTheme; + + /// See [PartR.readexPro]. static const readexPro = PartR.readexPro; + + /// See [PartR.readexProTextTheme]. static const readexProTextTheme = PartR.readexProTextTheme; + + /// See [PartR.recursive]. static const recursive = PartR.recursive; + + /// See [PartR.recursiveTextTheme]. static const recursiveTextTheme = PartR.recursiveTextTheme; + + /// See [PartR.redHatDisplay]. static const redHatDisplay = PartR.redHatDisplay; + + /// See [PartR.redHatDisplayTextTheme]. static const redHatDisplayTextTheme = PartR.redHatDisplayTextTheme; + + /// See [PartR.redHatMono]. static const redHatMono = PartR.redHatMono; + + /// See [PartR.redHatMonoTextTheme]. static const redHatMonoTextTheme = PartR.redHatMonoTextTheme; + + /// See [PartR.redHatText]. static const redHatText = PartR.redHatText; + + /// See [PartR.redHatTextTextTheme]. static const redHatTextTextTheme = PartR.redHatTextTextTheme; + + /// See [PartR.redRose]. static const redRose = PartR.redRose; + + /// See [PartR.redRoseTextTheme]. static const redRoseTextTheme = PartR.redRoseTextTheme; + + /// See [PartR.redacted]. static const redacted = PartR.redacted; + + /// See [PartR.redactedTextTheme]. static const redactedTextTheme = PartR.redactedTextTheme; + + /// See [PartR.redactedScript]. static const redactedScript = PartR.redactedScript; + + /// See [PartR.redactedScriptTextTheme]. static const redactedScriptTextTheme = PartR.redactedScriptTextTheme; + + /// See [PartR.redditMono]. static const redditMono = PartR.redditMono; + + /// See [PartR.redditMonoTextTheme]. static const redditMonoTextTheme = PartR.redditMonoTextTheme; + + /// See [PartR.redditSans]. static const redditSans = PartR.redditSans; + + /// See [PartR.redditSansTextTheme]. static const redditSansTextTheme = PartR.redditSansTextTheme; + + /// See [PartR.redditSansCondensed]. static const redditSansCondensed = PartR.redditSansCondensed; + + /// See [PartR.redditSansCondensedTextTheme]. static const redditSansCondensedTextTheme = PartR.redditSansCondensedTextTheme; + + /// See [PartR.redressed]. static const redressed = PartR.redressed; + + /// See [PartR.redressedTextTheme]. static const redressedTextTheme = PartR.redressedTextTheme; + + /// See [PartR.reemKufi]. static const reemKufi = PartR.reemKufi; + + /// See [PartR.reemKufiTextTheme]. static const reemKufiTextTheme = PartR.reemKufiTextTheme; + + /// See [PartR.reemKufiFun]. static const reemKufiFun = PartR.reemKufiFun; + + /// See [PartR.reemKufiFunTextTheme]. static const reemKufiFunTextTheme = PartR.reemKufiFunTextTheme; + + /// See [PartR.reemKufiInk]. static const reemKufiInk = PartR.reemKufiInk; + + /// See [PartR.reemKufiInkTextTheme]. static const reemKufiInkTextTheme = PartR.reemKufiInkTextTheme; + + /// See [PartR.reenieBeanie]. static const reenieBeanie = PartR.reenieBeanie; + + /// See [PartR.reenieBeanieTextTheme]. static const reenieBeanieTextTheme = PartR.reenieBeanieTextTheme; + + /// See [PartR.reggaeOne]. static const reggaeOne = PartR.reggaeOne; + + /// See [PartR.reggaeOneTextTheme]. static const reggaeOneTextTheme = PartR.reggaeOneTextTheme; + + /// See [PartR.rethinkSans]. static const rethinkSans = PartR.rethinkSans; + + /// See [PartR.rethinkSansTextTheme]. static const rethinkSansTextTheme = PartR.rethinkSansTextTheme; + + /// See [PartR.revalia]. static const revalia = PartR.revalia; + + /// See [PartR.revaliaTextTheme]. static const revaliaTextTheme = PartR.revaliaTextTheme; + + /// See [PartR.rhodiumLibre]. static const rhodiumLibre = PartR.rhodiumLibre; + + /// See [PartR.rhodiumLibreTextTheme]. static const rhodiumLibreTextTheme = PartR.rhodiumLibreTextTheme; + + /// See [PartR.ribeye]. static const ribeye = PartR.ribeye; + + /// See [PartR.ribeyeTextTheme]. static const ribeyeTextTheme = PartR.ribeyeTextTheme; + + /// See [PartR.ribeyeMarrow]. static const ribeyeMarrow = PartR.ribeyeMarrow; + + /// See [PartR.ribeyeMarrowTextTheme]. static const ribeyeMarrowTextTheme = PartR.ribeyeMarrowTextTheme; + + /// See [PartR.righteous]. static const righteous = PartR.righteous; + + /// See [PartR.righteousTextTheme]. static const righteousTextTheme = PartR.righteousTextTheme; + + /// See [PartR.risque]. static const risque = PartR.risque; + + /// See [PartR.risqueTextTheme]. static const risqueTextTheme = PartR.risqueTextTheme; + + /// See [PartR.roadRage]. static const roadRage = PartR.roadRage; + + /// See [PartR.roadRageTextTheme]. static const roadRageTextTheme = PartR.roadRageTextTheme; + + /// See [PartR.roboto]. static const roboto = PartR.roboto; + + /// See [PartR.robotoTextTheme]. static const robotoTextTheme = PartR.robotoTextTheme; + + /// See [PartR.robotoFlex]. static const robotoFlex = PartR.robotoFlex; + + /// See [PartR.robotoFlexTextTheme]. static const robotoFlexTextTheme = PartR.robotoFlexTextTheme; + + /// See [PartR.robotoMono]. static const robotoMono = PartR.robotoMono; + + /// See [PartR.robotoMonoTextTheme]. static const robotoMonoTextTheme = PartR.robotoMonoTextTheme; + + /// See [PartR.robotoSerif]. static const robotoSerif = PartR.robotoSerif; + + /// See [PartR.robotoSerifTextTheme]. static const robotoSerifTextTheme = PartR.robotoSerifTextTheme; + + /// See [PartR.robotoSlab]. static const robotoSlab = PartR.robotoSlab; + + /// See [PartR.robotoSlabTextTheme]. static const robotoSlabTextTheme = PartR.robotoSlabTextTheme; + + /// See [PartR.rochester]. static const rochester = PartR.rochester; + + /// See [PartR.rochesterTextTheme]. static const rochesterTextTheme = PartR.rochesterTextTheme; + + /// See [PartR.rock3d]. static const rock3d = PartR.rock3d; + + /// See [PartR.rock3dTextTheme]. static const rock3dTextTheme = PartR.rock3dTextTheme; + + /// See [PartR.rockSalt]. static const rockSalt = PartR.rockSalt; + + /// See [PartR.rockSaltTextTheme]. static const rockSaltTextTheme = PartR.rockSaltTextTheme; + + /// See [PartR.rocknRollOne]. static const rocknRollOne = PartR.rocknRollOne; + + /// See [PartR.rocknRollOneTextTheme]. static const rocknRollOneTextTheme = PartR.rocknRollOneTextTheme; + + /// See [PartR.rokkitt]. static const rokkitt = PartR.rokkitt; + + /// See [PartR.rokkittTextTheme]. static const rokkittTextTheme = PartR.rokkittTextTheme; + + /// See [PartR.romanesco]. static const romanesco = PartR.romanesco; + + /// See [PartR.romanescoTextTheme]. static const romanescoTextTheme = PartR.romanescoTextTheme; + + /// See [PartR.ropaSans]. static const ropaSans = PartR.ropaSans; + + /// See [PartR.ropaSansTextTheme]. static const ropaSansTextTheme = PartR.ropaSansTextTheme; + + /// See [PartR.rosario]. static const rosario = PartR.rosario; + + /// See [PartR.rosarioTextTheme]. static const rosarioTextTheme = PartR.rosarioTextTheme; + + /// See [PartR.rosarivo]. static const rosarivo = PartR.rosarivo; + + /// See [PartR.rosarivoTextTheme]. static const rosarivoTextTheme = PartR.rosarivoTextTheme; + + /// See [PartR.rougeScript]. static const rougeScript = PartR.rougeScript; + + /// See [PartR.rougeScriptTextTheme]. static const rougeScriptTextTheme = PartR.rougeScriptTextTheme; + + /// See [PartR.rowdies]. static const rowdies = PartR.rowdies; + + /// See [PartR.rowdiesTextTheme]. static const rowdiesTextTheme = PartR.rowdiesTextTheme; + + /// See [PartR.rozhaOne]. static const rozhaOne = PartR.rozhaOne; + + /// See [PartR.rozhaOneTextTheme]. static const rozhaOneTextTheme = PartR.rozhaOneTextTheme; + + /// See [PartR.rubik]. static const rubik = PartR.rubik; + + /// See [PartR.rubikTextTheme]. static const rubikTextTheme = PartR.rubikTextTheme; + + /// See [PartR.rubik80sFade]. static const rubik80sFade = PartR.rubik80sFade; + + /// See [PartR.rubik80sFadeTextTheme]. static const rubik80sFadeTextTheme = PartR.rubik80sFadeTextTheme; + + /// See [PartR.rubikBeastly]. static const rubikBeastly = PartR.rubikBeastly; + + /// See [PartR.rubikBeastlyTextTheme]. static const rubikBeastlyTextTheme = PartR.rubikBeastlyTextTheme; + + /// See [PartR.rubikBrokenFax]. static const rubikBrokenFax = PartR.rubikBrokenFax; + + /// See [PartR.rubikBrokenFaxTextTheme]. static const rubikBrokenFaxTextTheme = PartR.rubikBrokenFaxTextTheme; + + /// See [PartR.rubikBubbles]. static const rubikBubbles = PartR.rubikBubbles; + + /// See [PartR.rubikBubblesTextTheme]. static const rubikBubblesTextTheme = PartR.rubikBubblesTextTheme; + + /// See [PartR.rubikBurned]. static const rubikBurned = PartR.rubikBurned; + + /// See [PartR.rubikBurnedTextTheme]. static const rubikBurnedTextTheme = PartR.rubikBurnedTextTheme; + + /// See [PartR.rubikDirt]. static const rubikDirt = PartR.rubikDirt; + + /// See [PartR.rubikDirtTextTheme]. static const rubikDirtTextTheme = PartR.rubikDirtTextTheme; + + /// See [PartR.rubikDistressed]. static const rubikDistressed = PartR.rubikDistressed; + + /// See [PartR.rubikDistressedTextTheme]. static const rubikDistressedTextTheme = PartR.rubikDistressedTextTheme; + + /// See [PartR.rubikDoodleShadow]. static const rubikDoodleShadow = PartR.rubikDoodleShadow; + + /// See [PartR.rubikDoodleShadowTextTheme]. static const rubikDoodleShadowTextTheme = PartR.rubikDoodleShadowTextTheme; + + /// See [PartR.rubikDoodleTriangles]. static const rubikDoodleTriangles = PartR.rubikDoodleTriangles; + + /// See [PartR.rubikDoodleTrianglesTextTheme]. static const rubikDoodleTrianglesTextTheme = PartR.rubikDoodleTrianglesTextTheme; + + /// See [PartR.rubikGemstones]. static const rubikGemstones = PartR.rubikGemstones; + + /// See [PartR.rubikGemstonesTextTheme]. static const rubikGemstonesTextTheme = PartR.rubikGemstonesTextTheme; + + /// See [PartR.rubikGlitch]. static const rubikGlitch = PartR.rubikGlitch; + + /// See [PartR.rubikGlitchTextTheme]. static const rubikGlitchTextTheme = PartR.rubikGlitchTextTheme; + + /// See [PartR.rubikGlitchPop]. static const rubikGlitchPop = PartR.rubikGlitchPop; + + /// See [PartR.rubikGlitchPopTextTheme]. static const rubikGlitchPopTextTheme = PartR.rubikGlitchPopTextTheme; + + /// See [PartR.rubikIso]. static const rubikIso = PartR.rubikIso; + + /// See [PartR.rubikIsoTextTheme]. static const rubikIsoTextTheme = PartR.rubikIsoTextTheme; + + /// See [PartR.rubikLines]. static const rubikLines = PartR.rubikLines; + + /// See [PartR.rubikLinesTextTheme]. static const rubikLinesTextTheme = PartR.rubikLinesTextTheme; + + /// See [PartR.rubikMaps]. static const rubikMaps = PartR.rubikMaps; + + /// See [PartR.rubikMapsTextTheme]. static const rubikMapsTextTheme = PartR.rubikMapsTextTheme; + + /// See [PartR.rubikMarkerHatch]. static const rubikMarkerHatch = PartR.rubikMarkerHatch; + + /// See [PartR.rubikMarkerHatchTextTheme]. static const rubikMarkerHatchTextTheme = PartR.rubikMarkerHatchTextTheme; + + /// See [PartR.rubikMaze]. static const rubikMaze = PartR.rubikMaze; + + /// See [PartR.rubikMazeTextTheme]. static const rubikMazeTextTheme = PartR.rubikMazeTextTheme; + + /// See [PartR.rubikMicrobe]. static const rubikMicrobe = PartR.rubikMicrobe; + + /// See [PartR.rubikMicrobeTextTheme]. static const rubikMicrobeTextTheme = PartR.rubikMicrobeTextTheme; + + /// See [PartR.rubikMonoOne]. static const rubikMonoOne = PartR.rubikMonoOne; + + /// See [PartR.rubikMonoOneTextTheme]. static const rubikMonoOneTextTheme = PartR.rubikMonoOneTextTheme; + + /// See [PartR.rubikMoonrocks]. static const rubikMoonrocks = PartR.rubikMoonrocks; + + /// See [PartR.rubikMoonrocksTextTheme]. static const rubikMoonrocksTextTheme = PartR.rubikMoonrocksTextTheme; + + /// See [PartR.rubikPixels]. static const rubikPixels = PartR.rubikPixels; + + /// See [PartR.rubikPixelsTextTheme]. static const rubikPixelsTextTheme = PartR.rubikPixelsTextTheme; + + /// See [PartR.rubikPuddles]. static const rubikPuddles = PartR.rubikPuddles; + + /// See [PartR.rubikPuddlesTextTheme]. static const rubikPuddlesTextTheme = PartR.rubikPuddlesTextTheme; + + /// See [PartR.rubikScribble]. static const rubikScribble = PartR.rubikScribble; + + /// See [PartR.rubikScribbleTextTheme]. static const rubikScribbleTextTheme = PartR.rubikScribbleTextTheme; + + /// See [PartR.rubikSprayPaint]. static const rubikSprayPaint = PartR.rubikSprayPaint; + + /// See [PartR.rubikSprayPaintTextTheme]. static const rubikSprayPaintTextTheme = PartR.rubikSprayPaintTextTheme; + + /// See [PartR.rubikStorm]. static const rubikStorm = PartR.rubikStorm; + + /// See [PartR.rubikStormTextTheme]. static const rubikStormTextTheme = PartR.rubikStormTextTheme; + + /// See [PartR.rubikVinyl]. static const rubikVinyl = PartR.rubikVinyl; + + /// See [PartR.rubikVinylTextTheme]. static const rubikVinylTextTheme = PartR.rubikVinylTextTheme; + + /// See [PartR.rubikWetPaint]. static const rubikWetPaint = PartR.rubikWetPaint; + + /// See [PartR.rubikWetPaintTextTheme]. static const rubikWetPaintTextTheme = PartR.rubikWetPaintTextTheme; + + /// See [PartR.ruda]. static const ruda = PartR.ruda; + + /// See [PartR.rudaTextTheme]. static const rudaTextTheme = PartR.rudaTextTheme; + + /// See [PartR.rufina]. static const rufina = PartR.rufina; + + /// See [PartR.rufinaTextTheme]. static const rufinaTextTheme = PartR.rufinaTextTheme; + + /// See [PartR.rugeBoogie]. static const rugeBoogie = PartR.rugeBoogie; + + /// See [PartR.rugeBoogieTextTheme]. static const rugeBoogieTextTheme = PartR.rugeBoogieTextTheme; + + /// See [PartR.ruluko]. static const ruluko = PartR.ruluko; + + /// See [PartR.rulukoTextTheme]. static const rulukoTextTheme = PartR.rulukoTextTheme; + + /// See [PartR.rumRaisin]. static const rumRaisin = PartR.rumRaisin; + + /// See [PartR.rumRaisinTextTheme]. static const rumRaisinTextTheme = PartR.rumRaisinTextTheme; + + /// See [PartR.ruslanDisplay]. static const ruslanDisplay = PartR.ruslanDisplay; + + /// See [PartR.ruslanDisplayTextTheme]. static const ruslanDisplayTextTheme = PartR.ruslanDisplayTextTheme; + + /// See [PartR.russoOne]. static const russoOne = PartR.russoOne; + + /// See [PartR.russoOneTextTheme]. static const russoOneTextTheme = PartR.russoOneTextTheme; + + /// See [PartR.ruthie]. static const ruthie = PartR.ruthie; + + /// See [PartR.ruthieTextTheme]. static const ruthieTextTheme = PartR.ruthieTextTheme; + + /// See [PartR.ruwudu]. static const ruwudu = PartR.ruwudu; + + /// See [PartR.ruwuduTextTheme]. static const ruwuduTextTheme = PartR.ruwuduTextTheme; + + /// See [PartR.rye]. static const rye = PartR.rye; + + /// See [PartR.ryeTextTheme]. static const ryeTextTheme = PartR.ryeTextTheme; + + /// See [PartS.stixTwoText]. static const stixTwoText = PartS.stixTwoText; + + /// See [PartS.stixTwoTextTextTheme]. static const stixTwoTextTextTheme = PartS.stixTwoTextTextTheme; + + /// See [PartS.suse]. static const suse = PartS.suse; + + /// See [PartS.suseTextTheme]. static const suseTextTheme = PartS.suseTextTheme; + + /// See [PartS.suseMono]. static const suseMono = PartS.suseMono; + + /// See [PartS.suseMonoTextTheme]. static const suseMonoTextTheme = PartS.suseMonoTextTheme; + + /// See [PartS.sacramento]. static const sacramento = PartS.sacramento; + + /// See [PartS.sacramentoTextTheme]. static const sacramentoTextTheme = PartS.sacramentoTextTheme; + + /// See [PartS.sahitya]. static const sahitya = PartS.sahitya; + + /// See [PartS.sahityaTextTheme]. static const sahityaTextTheme = PartS.sahityaTextTheme; + + /// See [PartS.sail]. static const sail = PartS.sail; + + /// See [PartS.sailTextTheme]. static const sailTextTheme = PartS.sailTextTheme; + + /// See [PartS.saira]. static const saira = PartS.saira; + + /// See [PartS.sairaTextTheme]. static const sairaTextTheme = PartS.sairaTextTheme; + + /// See [PartS.sairaStencilOne]. static const sairaStencilOne = PartS.sairaStencilOne; + + /// See [PartS.sairaStencilOneTextTheme]. static const sairaStencilOneTextTheme = PartS.sairaStencilOneTextTheme; + + /// See [PartS.salsa]. static const salsa = PartS.salsa; + + /// See [PartS.salsaTextTheme]. static const salsaTextTheme = PartS.salsaTextTheme; + + /// See [PartS.sanchez]. static const sanchez = PartS.sanchez; + + /// See [PartS.sanchezTextTheme]. static const sanchezTextTheme = PartS.sanchezTextTheme; + + /// See [PartS.sancreek]. static const sancreek = PartS.sancreek; + + /// See [PartS.sancreekTextTheme]. static const sancreekTextTheme = PartS.sancreekTextTheme; + + /// See [PartS.sankofaDisplay]. static const sankofaDisplay = PartS.sankofaDisplay; + + /// See [PartS.sankofaDisplayTextTheme]. static const sankofaDisplayTextTheme = PartS.sankofaDisplayTextTheme; + + /// See [PartS.sansation]. static const sansation = PartS.sansation; + + /// See [PartS.sansationTextTheme]. static const sansationTextTheme = PartS.sansationTextTheme; + + /// See [PartS.sansita]. static const sansita = PartS.sansita; + + /// See [PartS.sansitaTextTheme]. static const sansitaTextTheme = PartS.sansitaTextTheme; + + /// See [PartS.sansitaSwashed]. static const sansitaSwashed = PartS.sansitaSwashed; + + /// See [PartS.sansitaSwashedTextTheme]. static const sansitaSwashedTextTheme = PartS.sansitaSwashedTextTheme; + + /// See [PartS.sarabun]. static const sarabun = PartS.sarabun; + + /// See [PartS.sarabunTextTheme]. static const sarabunTextTheme = PartS.sarabunTextTheme; + + /// See [PartS.sarala]. static const sarala = PartS.sarala; + + /// See [PartS.saralaTextTheme]. static const saralaTextTheme = PartS.saralaTextTheme; + + /// See [PartS.sarina]. static const sarina = PartS.sarina; + + /// See [PartS.sarinaTextTheme]. static const sarinaTextTheme = PartS.sarinaTextTheme; + + /// See [PartS.sarpanch]. static const sarpanch = PartS.sarpanch; + + /// See [PartS.sarpanchTextTheme]. static const sarpanchTextTheme = PartS.sarpanchTextTheme; + + /// See [PartS.sassyFrass]. static const sassyFrass = PartS.sassyFrass; + + /// See [PartS.sassyFrassTextTheme]. static const sassyFrassTextTheme = PartS.sassyFrassTextTheme; + + /// See [PartS.satisfy]. static const satisfy = PartS.satisfy; + + /// See [PartS.satisfyTextTheme]. static const satisfyTextTheme = PartS.satisfyTextTheme; + + /// See [PartS.savate]. static const savate = PartS.savate; + + /// See [PartS.savateTextTheme]. static const savateTextTheme = PartS.savateTextTheme; + + /// See [PartS.sawarabiGothic]. static const sawarabiGothic = PartS.sawarabiGothic; + + /// See [PartS.sawarabiGothicTextTheme]. static const sawarabiGothicTextTheme = PartS.sawarabiGothicTextTheme; + + /// See [PartS.sawarabiMincho]. static const sawarabiMincho = PartS.sawarabiMincho; + + /// See [PartS.sawarabiMinchoTextTheme]. static const sawarabiMinchoTextTheme = PartS.sawarabiMinchoTextTheme; + + /// See [PartS.scada]. static const scada = PartS.scada; + + /// See [PartS.scadaTextTheme]. static const scadaTextTheme = PartS.scadaTextTheme; + + /// See [PartS.scheherazadeNew]. static const scheherazadeNew = PartS.scheherazadeNew; + + /// See [PartS.scheherazadeNewTextTheme]. static const scheherazadeNewTextTheme = PartS.scheherazadeNewTextTheme; + + /// See [PartS.schibstedGrotesk]. static const schibstedGrotesk = PartS.schibstedGrotesk; + + /// See [PartS.schibstedGroteskTextTheme]. static const schibstedGroteskTextTheme = PartS.schibstedGroteskTextTheme; + + /// See [PartS.schoolbell]. static const schoolbell = PartS.schoolbell; + + /// See [PartS.schoolbellTextTheme]. static const schoolbellTextTheme = PartS.schoolbellTextTheme; + + /// See [PartS.scopeOne]. static const scopeOne = PartS.scopeOne; + + /// See [PartS.scopeOneTextTheme]. static const scopeOneTextTheme = PartS.scopeOneTextTheme; + + /// See [PartS.seaweedScript]. static const seaweedScript = PartS.seaweedScript; + + /// See [PartS.seaweedScriptTextTheme]. static const seaweedScriptTextTheme = PartS.seaweedScriptTextTheme; + + /// See [PartS.secularOne]. static const secularOne = PartS.secularOne; + + /// See [PartS.secularOneTextTheme]. static const secularOneTextTheme = PartS.secularOneTextTheme; + + /// See [PartS.sedan]. static const sedan = PartS.sedan; + + /// See [PartS.sedanTextTheme]. static const sedanTextTheme = PartS.sedanTextTheme; + + /// See [PartS.sedanSc]. static const sedanSc = PartS.sedanSc; + + /// See [PartS.sedanScTextTheme]. static const sedanScTextTheme = PartS.sedanScTextTheme; + + /// See [PartS.sedgwickAve]. static const sedgwickAve = PartS.sedgwickAve; + + /// See [PartS.sedgwickAveTextTheme]. static const sedgwickAveTextTheme = PartS.sedgwickAveTextTheme; + + /// See [PartS.sedgwickAveDisplay]. static const sedgwickAveDisplay = PartS.sedgwickAveDisplay; + + /// See [PartS.sedgwickAveDisplayTextTheme]. static const sedgwickAveDisplayTextTheme = PartS.sedgwickAveDisplayTextTheme; + + /// See [PartS.sen]. static const sen = PartS.sen; + + /// See [PartS.senTextTheme]. static const senTextTheme = PartS.senTextTheme; + + /// See [PartS.sendFlowers]. static const sendFlowers = PartS.sendFlowers; + + /// See [PartS.sendFlowersTextTheme]. static const sendFlowersTextTheme = PartS.sendFlowersTextTheme; + + /// See [PartS.sevillana]. static const sevillana = PartS.sevillana; + + /// See [PartS.sevillanaTextTheme]. static const sevillanaTextTheme = PartS.sevillanaTextTheme; + + /// See [PartS.seymourOne]. static const seymourOne = PartS.seymourOne; + + /// See [PartS.seymourOneTextTheme]. static const seymourOneTextTheme = PartS.seymourOneTextTheme; + + /// See [PartS.shadowsIntoLight]. static const shadowsIntoLight = PartS.shadowsIntoLight; + + /// See [PartS.shadowsIntoLightTextTheme]. static const shadowsIntoLightTextTheme = PartS.shadowsIntoLightTextTheme; + + /// See [PartS.shadowsIntoLightTwo]. static const shadowsIntoLightTwo = PartS.shadowsIntoLightTwo; + + /// See [PartS.shadowsIntoLightTwoTextTheme]. static const shadowsIntoLightTwoTextTheme = PartS.shadowsIntoLightTwoTextTheme; + + /// See [PartS.shafarik]. static const shafarik = PartS.shafarik; + + /// See [PartS.shafarikTextTheme]. static const shafarikTextTheme = PartS.shafarikTextTheme; + + /// See [PartS.shalimar]. static const shalimar = PartS.shalimar; + + /// See [PartS.shalimarTextTheme]. static const shalimarTextTheme = PartS.shalimarTextTheme; + + /// See [PartS.shantellSans]. static const shantellSans = PartS.shantellSans; + + /// See [PartS.shantellSansTextTheme]. static const shantellSansTextTheme = PartS.shantellSansTextTheme; + + /// See [PartS.shanti]. static const shanti = PartS.shanti; + + /// See [PartS.shantiTextTheme]. static const shantiTextTheme = PartS.shantiTextTheme; + + /// See [PartS.share]. static const share = PartS.share; + + /// See [PartS.shareTextTheme]. static const shareTextTheme = PartS.shareTextTheme; + + /// See [PartS.shareTech]. static const shareTech = PartS.shareTech; + + /// See [PartS.shareTechTextTheme]. static const shareTechTextTheme = PartS.shareTechTextTheme; + + /// See [PartS.shareTechMono]. static const shareTechMono = PartS.shareTechMono; + + /// See [PartS.shareTechMonoTextTheme]. static const shareTechMonoTextTheme = PartS.shareTechMonoTextTheme; + + /// See [PartS.shipporiAntique]. static const shipporiAntique = PartS.shipporiAntique; + + /// See [PartS.shipporiAntiqueTextTheme]. static const shipporiAntiqueTextTheme = PartS.shipporiAntiqueTextTheme; + + /// See [PartS.shipporiAntiqueB1]. static const shipporiAntiqueB1 = PartS.shipporiAntiqueB1; + + /// See [PartS.shipporiAntiqueB1TextTheme]. static const shipporiAntiqueB1TextTheme = PartS.shipporiAntiqueB1TextTheme; + + /// See [PartS.shipporiMincho]. static const shipporiMincho = PartS.shipporiMincho; + + /// See [PartS.shipporiMinchoTextTheme]. static const shipporiMinchoTextTheme = PartS.shipporiMinchoTextTheme; + + /// See [PartS.shipporiMinchoB1]. static const shipporiMinchoB1 = PartS.shipporiMinchoB1; + + /// See [PartS.shipporiMinchoB1TextTheme]. static const shipporiMinchoB1TextTheme = PartS.shipporiMinchoB1TextTheme; + + /// See [PartS.shizuru]. static const shizuru = PartS.shizuru; + + /// See [PartS.shizuruTextTheme]. static const shizuruTextTheme = PartS.shizuruTextTheme; + + /// See [PartS.shojumaru]. static const shojumaru = PartS.shojumaru; + + /// See [PartS.shojumaruTextTheme]. static const shojumaruTextTheme = PartS.shojumaruTextTheme; + + /// See [PartS.shortStack]. static const shortStack = PartS.shortStack; + + /// See [PartS.shortStackTextTheme]. static const shortStackTextTheme = PartS.shortStackTextTheme; + + /// See [PartS.shrikhand]. static const shrikhand = PartS.shrikhand; + + /// See [PartS.shrikhandTextTheme]. static const shrikhandTextTheme = PartS.shrikhandTextTheme; + + /// See [PartS.siemreap]. static const siemreap = PartS.siemreap; + + /// See [PartS.siemreapTextTheme]. static const siemreapTextTheme = PartS.siemreapTextTheme; + + /// See [PartS.sigmar]. static const sigmar = PartS.sigmar; + + /// See [PartS.sigmarTextTheme]. static const sigmarTextTheme = PartS.sigmarTextTheme; + + /// See [PartS.sigmarOne]. static const sigmarOne = PartS.sigmarOne; + + /// See [PartS.sigmarOneTextTheme]. static const sigmarOneTextTheme = PartS.sigmarOneTextTheme; + + /// See [PartS.signika]. static const signika = PartS.signika; + + /// See [PartS.signikaTextTheme]. static const signikaTextTheme = PartS.signikaTextTheme; + + /// See [PartS.signikaNegative]. static const signikaNegative = PartS.signikaNegative; + + /// See [PartS.signikaNegativeTextTheme]. static const signikaNegativeTextTheme = PartS.signikaNegativeTextTheme; + + /// See [PartS.silkscreen]. static const silkscreen = PartS.silkscreen; + + /// See [PartS.silkscreenTextTheme]. static const silkscreenTextTheme = PartS.silkscreenTextTheme; + + /// See [PartS.simonetta]. static const simonetta = PartS.simonetta; + + /// See [PartS.simonettaTextTheme]. static const simonettaTextTheme = PartS.simonettaTextTheme; + + /// See [PartS.singleDay]. static const singleDay = PartS.singleDay; + + /// See [PartS.singleDayTextTheme]. static const singleDayTextTheme = PartS.singleDayTextTheme; + + /// See [PartS.sintony]. static const sintony = PartS.sintony; + + /// See [PartS.sintonyTextTheme]. static const sintonyTextTheme = PartS.sintonyTextTheme; + + /// See [PartS.sirinStencil]. static const sirinStencil = PartS.sirinStencil; + + /// See [PartS.sirinStencilTextTheme]. static const sirinStencilTextTheme = PartS.sirinStencilTextTheme; + + /// See [PartS.sirivennela]. static const sirivennela = PartS.sirivennela; + + /// See [PartS.sirivennelaTextTheme]. static const sirivennelaTextTheme = PartS.sirivennelaTextTheme; + + /// See [PartS.sixCaps]. static const sixCaps = PartS.sixCaps; + + /// See [PartS.sixCapsTextTheme]. static const sixCapsTextTheme = PartS.sixCapsTextTheme; + + /// See [PartS.sixtyfour]. static const sixtyfour = PartS.sixtyfour; + + /// See [PartS.sixtyfourTextTheme]. static const sixtyfourTextTheme = PartS.sixtyfourTextTheme; + + /// See [PartS.sixtyfourConvergence]. static const sixtyfourConvergence = PartS.sixtyfourConvergence; + + /// See [PartS.sixtyfourConvergenceTextTheme]. static const sixtyfourConvergenceTextTheme = PartS.sixtyfourConvergenceTextTheme; + + /// See [PartS.skranji]. static const skranji = PartS.skranji; + + /// See [PartS.skranjiTextTheme]. static const skranjiTextTheme = PartS.skranjiTextTheme; + + /// See [PartS.slabo13px]. static const slabo13px = PartS.slabo13px; + + /// See [PartS.slabo13pxTextTheme]. static const slabo13pxTextTheme = PartS.slabo13pxTextTheme; + + /// See [PartS.slabo27px]. static const slabo27px = PartS.slabo27px; + + /// See [PartS.slabo27pxTextTheme]. static const slabo27pxTextTheme = PartS.slabo27pxTextTheme; + + /// See [PartS.slackey]. static const slackey = PartS.slackey; + + /// See [PartS.slackeyTextTheme]. static const slackeyTextTheme = PartS.slackeyTextTheme; + + /// See [PartS.slacksideOne]. static const slacksideOne = PartS.slacksideOne; + + /// See [PartS.slacksideOneTextTheme]. static const slacksideOneTextTheme = PartS.slacksideOneTextTheme; + + /// See [PartS.smokum]. static const smokum = PartS.smokum; + + /// See [PartS.smokumTextTheme]. static const smokumTextTheme = PartS.smokumTextTheme; + + /// See [PartS.smooch]. static const smooch = PartS.smooch; + + /// See [PartS.smoochTextTheme]. static const smoochTextTheme = PartS.smoochTextTheme; + + /// See [PartS.smoochSans]. static const smoochSans = PartS.smoochSans; + + /// See [PartS.smoochSansTextTheme]. static const smoochSansTextTheme = PartS.smoochSansTextTheme; + + /// See [PartS.smythe]. static const smythe = PartS.smythe; + + /// See [PartS.smytheTextTheme]. static const smytheTextTheme = PartS.smytheTextTheme; + + /// See [PartS.sniglet]. static const sniglet = PartS.sniglet; + + /// See [PartS.snigletTextTheme]. static const snigletTextTheme = PartS.snigletTextTheme; + + /// See [PartS.snippet]. static const snippet = PartS.snippet; + + /// See [PartS.snippetTextTheme]. static const snippetTextTheme = PartS.snippetTextTheme; + + /// See [PartS.snowburstOne]. static const snowburstOne = PartS.snowburstOne; + + /// See [PartS.snowburstOneTextTheme]. static const snowburstOneTextTheme = PartS.snowburstOneTextTheme; + + /// See [PartS.sofadiOne]. static const sofadiOne = PartS.sofadiOne; + + /// See [PartS.sofadiOneTextTheme]. static const sofadiOneTextTheme = PartS.sofadiOneTextTheme; + + /// See [PartS.sofia]. static const sofia = PartS.sofia; + + /// See [PartS.sofiaTextTheme]. static const sofiaTextTheme = PartS.sofiaTextTheme; + + /// See [PartS.sofiaSans]. static const sofiaSans = PartS.sofiaSans; + + /// See [PartS.sofiaSansTextTheme]. static const sofiaSansTextTheme = PartS.sofiaSansTextTheme; + + /// See [PartS.sofiaSansCondensed]. static const sofiaSansCondensed = PartS.sofiaSansCondensed; + + /// See [PartS.sofiaSansCondensedTextTheme]. static const sofiaSansCondensedTextTheme = PartS.sofiaSansCondensedTextTheme; + + /// See [PartS.sofiaSansExtraCondensed]. static const sofiaSansExtraCondensed = PartS.sofiaSansExtraCondensed; + + /// See [PartS.sofiaSansExtraCondensedTextTheme]. static const sofiaSansExtraCondensedTextTheme = PartS.sofiaSansExtraCondensedTextTheme; + + /// See [PartS.sofiaSansSemiCondensed]. static const sofiaSansSemiCondensed = PartS.sofiaSansSemiCondensed; + + /// See [PartS.sofiaSansSemiCondensedTextTheme]. static const sofiaSansSemiCondensedTextTheme = PartS.sofiaSansSemiCondensedTextTheme; + + /// See [PartS.solitreo]. static const solitreo = PartS.solitreo; + + /// See [PartS.solitreoTextTheme]. static const solitreoTextTheme = PartS.solitreoTextTheme; + + /// See [PartS.solway]. static const solway = PartS.solway; + + /// See [PartS.solwayTextTheme]. static const solwayTextTheme = PartS.solwayTextTheme; + + /// See [PartS.sometypeMono]. static const sometypeMono = PartS.sometypeMono; + + /// See [PartS.sometypeMonoTextTheme]. static const sometypeMonoTextTheme = PartS.sometypeMonoTextTheme; + + /// See [PartS.songMyung]. static const songMyung = PartS.songMyung; + + /// See [PartS.songMyungTextTheme]. static const songMyungTextTheme = PartS.songMyungTextTheme; + + /// See [PartS.sono]. static const sono = PartS.sono; + + /// See [PartS.sonoTextTheme]. static const sonoTextTheme = PartS.sonoTextTheme; + + /// See [PartS.sonsieOne]. static const sonsieOne = PartS.sonsieOne; + + /// See [PartS.sonsieOneTextTheme]. static const sonsieOneTextTheme = PartS.sonsieOneTextTheme; + + /// See [PartS.sora]. static const sora = PartS.sora; + + /// See [PartS.soraTextTheme]. static const soraTextTheme = PartS.soraTextTheme; + + /// See [PartS.sortsMillGoudy]. static const sortsMillGoudy = PartS.sortsMillGoudy; + + /// See [PartS.sortsMillGoudyTextTheme]. static const sortsMillGoudyTextTheme = PartS.sortsMillGoudyTextTheme; + + /// See [PartS.sourGummy]. static const sourGummy = PartS.sourGummy; + + /// See [PartS.sourGummyTextTheme]. static const sourGummyTextTheme = PartS.sourGummyTextTheme; + + /// See [PartS.sourceCodePro]. static const sourceCodePro = PartS.sourceCodePro; + + /// See [PartS.sourceCodeProTextTheme]. static const sourceCodeProTextTheme = PartS.sourceCodeProTextTheme; + + /// See [PartS.sourceSans3]. static const sourceSans3 = PartS.sourceSans3; + + /// See [PartS.sourceSans3TextTheme]. static const sourceSans3TextTheme = PartS.sourceSans3TextTheme; + + /// See [PartS.sourceSerif4]. static const sourceSerif4 = PartS.sourceSerif4; + + /// See [PartS.sourceSerif4TextTheme]. static const sourceSerif4TextTheme = PartS.sourceSerif4TextTheme; + + /// See [PartS.spaceGrotesk]. static const spaceGrotesk = PartS.spaceGrotesk; + + /// See [PartS.spaceGroteskTextTheme]. static const spaceGroteskTextTheme = PartS.spaceGroteskTextTheme; + + /// See [PartS.spaceMono]. static const spaceMono = PartS.spaceMono; + + /// See [PartS.spaceMonoTextTheme]. static const spaceMonoTextTheme = PartS.spaceMonoTextTheme; + + /// See [PartS.specialElite]. static const specialElite = PartS.specialElite; + + /// See [PartS.specialEliteTextTheme]. static const specialEliteTextTheme = PartS.specialEliteTextTheme; + + /// See [PartS.specialGothic]. static const specialGothic = PartS.specialGothic; + + /// See [PartS.specialGothicTextTheme]. static const specialGothicTextTheme = PartS.specialGothicTextTheme; + + /// See [PartS.specialGothicCondensedOne]. static const specialGothicCondensedOne = PartS.specialGothicCondensedOne; + + /// See [PartS.specialGothicCondensedOneTextTheme]. static const specialGothicCondensedOneTextTheme = PartS.specialGothicCondensedOneTextTheme; + + /// See [PartS.specialGothicExpandedOne]. static const specialGothicExpandedOne = PartS.specialGothicExpandedOne; + + /// See [PartS.specialGothicExpandedOneTextTheme]. static const specialGothicExpandedOneTextTheme = PartS.specialGothicExpandedOneTextTheme; + + /// See [PartS.spectral]. static const spectral = PartS.spectral; + + /// See [PartS.spectralTextTheme]. static const spectralTextTheme = PartS.spectralTextTheme; + + /// See [PartS.spectralSc]. static const spectralSc = PartS.spectralSc; + + /// See [PartS.spectralScTextTheme]. static const spectralScTextTheme = PartS.spectralScTextTheme; + + /// See [PartS.spicyRice]. static const spicyRice = PartS.spicyRice; + + /// See [PartS.spicyRiceTextTheme]. static const spicyRiceTextTheme = PartS.spicyRiceTextTheme; + + /// See [PartS.spinnaker]. static const spinnaker = PartS.spinnaker; + + /// See [PartS.spinnakerTextTheme]. static const spinnakerTextTheme = PartS.spinnakerTextTheme; + + /// See [PartS.spirax]. static const spirax = PartS.spirax; + + /// See [PartS.spiraxTextTheme]. static const spiraxTextTheme = PartS.spiraxTextTheme; + + /// See [PartS.splash]. static const splash = PartS.splash; + + /// See [PartS.splashTextTheme]. static const splashTextTheme = PartS.splashTextTheme; + + /// See [PartS.splineSans]. static const splineSans = PartS.splineSans; + + /// See [PartS.splineSansTextTheme]. static const splineSansTextTheme = PartS.splineSansTextTheme; + + /// See [PartS.splineSansMono]. static const splineSansMono = PartS.splineSansMono; + + /// See [PartS.splineSansMonoTextTheme]. static const splineSansMonoTextTheme = PartS.splineSansMonoTextTheme; + + /// See [PartS.squadaOne]. static const squadaOne = PartS.squadaOne; + + /// See [PartS.squadaOneTextTheme]. static const squadaOneTextTheme = PartS.squadaOneTextTheme; + + /// See [PartS.squarePeg]. static const squarePeg = PartS.squarePeg; + + /// See [PartS.squarePegTextTheme]. static const squarePegTextTheme = PartS.squarePegTextTheme; + + /// See [PartS.sreeKrushnadevaraya]. static const sreeKrushnadevaraya = PartS.sreeKrushnadevaraya; + + /// See [PartS.sreeKrushnadevarayaTextTheme]. static const sreeKrushnadevarayaTextTheme = PartS.sreeKrushnadevarayaTextTheme; + + /// See [PartS.sriracha]. static const sriracha = PartS.sriracha; + + /// See [PartS.srirachaTextTheme]. static const srirachaTextTheme = PartS.srirachaTextTheme; + + /// See [PartS.srisakdi]. static const srisakdi = PartS.srisakdi; + + /// See [PartS.srisakdiTextTheme]. static const srisakdiTextTheme = PartS.srisakdiTextTheme; + + /// See [PartS.staatliches]. static const staatliches = PartS.staatliches; + + /// See [PartS.staatlichesTextTheme]. static const staatlichesTextTheme = PartS.staatlichesTextTheme; + + /// See [PartS.stalemate]. static const stalemate = PartS.stalemate; + + /// See [PartS.stalemateTextTheme]. static const stalemateTextTheme = PartS.stalemateTextTheme; + + /// See [PartS.stalinistOne]. static const stalinistOne = PartS.stalinistOne; + + /// See [PartS.stalinistOneTextTheme]. static const stalinistOneTextTheme = PartS.stalinistOneTextTheme; + + /// See [PartS.stardosStencil]. static const stardosStencil = PartS.stardosStencil; + + /// See [PartS.stardosStencilTextTheme]. static const stardosStencilTextTheme = PartS.stardosStencilTextTheme; + + /// See [PartS.stick]. static const stick = PartS.stick; + + /// See [PartS.stickTextTheme]. static const stickTextTheme = PartS.stickTextTheme; + + /// See [PartS.stickNoBills]. static const stickNoBills = PartS.stickNoBills; + + /// See [PartS.stickNoBillsTextTheme]. static const stickNoBillsTextTheme = PartS.stickNoBillsTextTheme; + + /// See [PartS.stintUltraCondensed]. static const stintUltraCondensed = PartS.stintUltraCondensed; + + /// See [PartS.stintUltraCondensedTextTheme]. static const stintUltraCondensedTextTheme = PartS.stintUltraCondensedTextTheme; + + /// See [PartS.stintUltraExpanded]. static const stintUltraExpanded = PartS.stintUltraExpanded; + + /// See [PartS.stintUltraExpandedTextTheme]. static const stintUltraExpandedTextTheme = PartS.stintUltraExpandedTextTheme; + + /// See [PartS.stoke]. static const stoke = PartS.stoke; + + /// See [PartS.stokeTextTheme]. static const stokeTextTheme = PartS.stokeTextTheme; + + /// See [PartS.storyScript]. static const storyScript = PartS.storyScript; + + /// See [PartS.storyScriptTextTheme]. static const storyScriptTextTheme = PartS.storyScriptTextTheme; + + /// See [PartS.strait]. static const strait = PartS.strait; + + /// See [PartS.straitTextTheme]. static const straitTextTheme = PartS.straitTextTheme; + + /// See [PartS.styleScript]. static const styleScript = PartS.styleScript; + + /// See [PartS.styleScriptTextTheme]. static const styleScriptTextTheme = PartS.styleScriptTextTheme; + + /// See [PartS.stylish]. static const stylish = PartS.stylish; + + /// See [PartS.stylishTextTheme]. static const stylishTextTheme = PartS.stylishTextTheme; + + /// See [PartS.sueEllenFrancisco]. static const sueEllenFrancisco = PartS.sueEllenFrancisco; + + /// See [PartS.sueEllenFranciscoTextTheme]. static const sueEllenFranciscoTextTheme = PartS.sueEllenFranciscoTextTheme; + + /// See [PartS.suezOne]. static const suezOne = PartS.suezOne; + + /// See [PartS.suezOneTextTheme]. static const suezOneTextTheme = PartS.suezOneTextTheme; + + /// See [PartS.sulphurPoint]. static const sulphurPoint = PartS.sulphurPoint; + + /// See [PartS.sulphurPointTextTheme]. static const sulphurPointTextTheme = PartS.sulphurPointTextTheme; + + /// See [PartS.sumana]. static const sumana = PartS.sumana; + + /// See [PartS.sumanaTextTheme]. static const sumanaTextTheme = PartS.sumanaTextTheme; + + /// See [PartS.sunflower]. static const sunflower = PartS.sunflower; + + /// See [PartS.sunflowerTextTheme]. static const sunflowerTextTheme = PartS.sunflowerTextTheme; + + /// See [PartS.sunshiney]. static const sunshiney = PartS.sunshiney; + + /// See [PartS.sunshineyTextTheme]. static const sunshineyTextTheme = PartS.sunshineyTextTheme; + + /// See [PartS.supermercadoOne]. static const supermercadoOne = PartS.supermercadoOne; + + /// See [PartS.supermercadoOneTextTheme]. static const supermercadoOneTextTheme = PartS.supermercadoOneTextTheme; + + /// See [PartS.sura]. static const sura = PartS.sura; + + /// See [PartS.suraTextTheme]. static const suraTextTheme = PartS.suraTextTheme; + + /// See [PartS.suranna]. static const suranna = PartS.suranna; + + /// See [PartS.surannaTextTheme]. static const surannaTextTheme = PartS.surannaTextTheme; + + /// See [PartS.suravaram]. static const suravaram = PartS.suravaram; + + /// See [PartS.suravaramTextTheme]. static const suravaramTextTheme = PartS.suravaramTextTheme; + + /// See [PartS.suwannaphum]. static const suwannaphum = PartS.suwannaphum; + + /// See [PartS.suwannaphumTextTheme]. static const suwannaphumTextTheme = PartS.suwannaphumTextTheme; + + /// See [PartS.swankyAndMooMoo]. static const swankyAndMooMoo = PartS.swankyAndMooMoo; + + /// See [PartS.swankyAndMooMooTextTheme]. static const swankyAndMooMooTextTheme = PartS.swankyAndMooMooTextTheme; + + /// See [PartS.syncopate]. static const syncopate = PartS.syncopate; + + /// See [PartS.syncopateTextTheme]. static const syncopateTextTheme = PartS.syncopateTextTheme; + + /// See [PartS.syne]. static const syne = PartS.syne; + + /// See [PartS.syneTextTheme]. static const syneTextTheme = PartS.syneTextTheme; + + /// See [PartS.syneMono]. static const syneMono = PartS.syneMono; + + /// See [PartS.syneMonoTextTheme]. static const syneMonoTextTheme = PartS.syneMonoTextTheme; + + /// See [PartS.syneTactile]. static const syneTactile = PartS.syneTactile; + + /// See [PartS.syneTactileTextTheme]. static const syneTactileTextTheme = PartS.syneTactileTextTheme; + + /// See [PartT.tasaExplorer]. static const tasaExplorer = PartT.tasaExplorer; + + /// See [PartT.tasaExplorerTextTheme]. static const tasaExplorerTextTheme = PartT.tasaExplorerTextTheme; + + /// See [PartT.tasaOrbiter]. static const tasaOrbiter = PartT.tasaOrbiter; + + /// See [PartT.tasaOrbiterTextTheme]. static const tasaOrbiterTextTheme = PartT.tasaOrbiterTextTheme; + + /// See [PartT.tacOne]. static const tacOne = PartT.tacOne; + + /// See [PartT.tacOneTextTheme]. static const tacOneTextTheme = PartT.tacOneTextTheme; + + /// See [PartT.tagesschrift]. static const tagesschrift = PartT.tagesschrift; + + /// See [PartT.tagesschriftTextTheme]. static const tagesschriftTextTheme = PartT.tagesschriftTextTheme; + + /// See [PartT.taiHeritagePro]. static const taiHeritagePro = PartT.taiHeritagePro; + + /// See [PartT.taiHeritageProTextTheme]. static const taiHeritageProTextTheme = PartT.taiHeritageProTextTheme; + + /// See [PartT.tajawal]. static const tajawal = PartT.tajawal; + + /// See [PartT.tajawalTextTheme]. static const tajawalTextTheme = PartT.tajawalTextTheme; + + /// See [PartT.tangerine]. static const tangerine = PartT.tangerine; + + /// See [PartT.tangerineTextTheme]. static const tangerineTextTheme = PartT.tangerineTextTheme; + + /// See [PartT.tapestry]. static const tapestry = PartT.tapestry; + + /// See [PartT.tapestryTextTheme]. static const tapestryTextTheme = PartT.tapestryTextTheme; + + /// See [PartT.taprom]. static const taprom = PartT.taprom; + + /// See [PartT.tapromTextTheme]. static const tapromTextTheme = PartT.tapromTextTheme; + + /// See [PartT.tauri]. static const tauri = PartT.tauri; + + /// See [PartT.tauriTextTheme]. static const tauriTextTheme = PartT.tauriTextTheme; + + /// See [PartT.taviraj]. static const taviraj = PartT.taviraj; + + /// See [PartT.tavirajTextTheme]. static const tavirajTextTheme = PartT.tavirajTextTheme; + + /// See [PartT.teachers]. static const teachers = PartT.teachers; + + /// See [PartT.teachersTextTheme]. static const teachersTextTheme = PartT.teachersTextTheme; + + /// See [PartT.teko]. static const teko = PartT.teko; + + /// See [PartT.tekoTextTheme]. static const tekoTextTheme = PartT.tekoTextTheme; + + /// See [PartT.tektur]. static const tektur = PartT.tektur; + + /// See [PartT.tekturTextTheme]. static const tekturTextTheme = PartT.tekturTextTheme; + + /// See [PartT.telex]. static const telex = PartT.telex; + + /// See [PartT.telexTextTheme]. static const telexTextTheme = PartT.telexTextTheme; + + /// See [PartT.tenaliRamakrishna]. static const tenaliRamakrishna = PartT.tenaliRamakrishna; + + /// See [PartT.tenaliRamakrishnaTextTheme]. static const tenaliRamakrishnaTextTheme = PartT.tenaliRamakrishnaTextTheme; + + /// See [PartT.tenorSans]. static const tenorSans = PartT.tenorSans; + + /// See [PartT.tenorSansTextTheme]. static const tenorSansTextTheme = PartT.tenorSansTextTheme; + + /// See [PartT.textMeOne]. static const textMeOne = PartT.textMeOne; + + /// See [PartT.textMeOneTextTheme]. static const textMeOneTextTheme = PartT.textMeOneTextTheme; + + /// See [PartT.texturina]. static const texturina = PartT.texturina; + + /// See [PartT.texturinaTextTheme]. static const texturinaTextTheme = PartT.texturinaTextTheme; + + /// See [PartT.thasadith]. static const thasadith = PartT.thasadith; + + /// See [PartT.thasadithTextTheme]. static const thasadithTextTheme = PartT.thasadithTextTheme; + + /// See [PartT.theGirlNextDoor]. static const theGirlNextDoor = PartT.theGirlNextDoor; + + /// See [PartT.theGirlNextDoorTextTheme]. static const theGirlNextDoorTextTheme = PartT.theGirlNextDoorTextTheme; + + /// See [PartT.theNautigal]. static const theNautigal = PartT.theNautigal; + + /// See [PartT.theNautigalTextTheme]. static const theNautigalTextTheme = PartT.theNautigalTextTheme; + + /// See [PartT.tienne]. static const tienne = PartT.tienne; + + /// See [PartT.tienneTextTheme]. static const tienneTextTheme = PartT.tienneTextTheme; + + /// See [PartT.tikTokSans]. static const tikTokSans = PartT.tikTokSans; + + /// See [PartT.tikTokSansTextTheme]. static const tikTokSansTextTheme = PartT.tikTokSansTextTheme; + + /// See [PartT.tillana]. static const tillana = PartT.tillana; + + /// See [PartT.tillanaTextTheme]. static const tillanaTextTheme = PartT.tillanaTextTheme; + + /// See [PartT.tiltNeon]. static const tiltNeon = PartT.tiltNeon; + + /// See [PartT.tiltNeonTextTheme]. static const tiltNeonTextTheme = PartT.tiltNeonTextTheme; + + /// See [PartT.tiltPrism]. static const tiltPrism = PartT.tiltPrism; + + /// See [PartT.tiltPrismTextTheme]. static const tiltPrismTextTheme = PartT.tiltPrismTextTheme; + + /// See [PartT.tiltWarp]. static const tiltWarp = PartT.tiltWarp; + + /// See [PartT.tiltWarpTextTheme]. static const tiltWarpTextTheme = PartT.tiltWarpTextTheme; + + /// See [PartT.timmana]. static const timmana = PartT.timmana; + + /// See [PartT.timmanaTextTheme]. static const timmanaTextTheme = PartT.timmanaTextTheme; + + /// See [PartT.tinos]. static const tinos = PartT.tinos; + + /// See [PartT.tinosTextTheme]. static const tinosTextTheme = PartT.tinosTextTheme; + + /// See [PartT.tiny5]. static const tiny5 = PartT.tiny5; + + /// See [PartT.tiny5TextTheme]. static const tiny5TextTheme = PartT.tiny5TextTheme; + + /// See [PartT.tiroBangla]. static const tiroBangla = PartT.tiroBangla; + + /// See [PartT.tiroBanglaTextTheme]. static const tiroBanglaTextTheme = PartT.tiroBanglaTextTheme; + + /// See [PartT.tiroDevanagariHindi]. static const tiroDevanagariHindi = PartT.tiroDevanagariHindi; + + /// See [PartT.tiroDevanagariHindiTextTheme]. static const tiroDevanagariHindiTextTheme = PartT.tiroDevanagariHindiTextTheme; + + /// See [PartT.tiroDevanagariMarathi]. static const tiroDevanagariMarathi = PartT.tiroDevanagariMarathi; + + /// See [PartT.tiroDevanagariMarathiTextTheme]. static const tiroDevanagariMarathiTextTheme = PartT.tiroDevanagariMarathiTextTheme; + + /// See [PartT.tiroDevanagariSanskrit]. static const tiroDevanagariSanskrit = PartT.tiroDevanagariSanskrit; + + /// See [PartT.tiroDevanagariSanskritTextTheme]. static const tiroDevanagariSanskritTextTheme = PartT.tiroDevanagariSanskritTextTheme; + + /// See [PartT.tiroGurmukhi]. static const tiroGurmukhi = PartT.tiroGurmukhi; + + /// See [PartT.tiroGurmukhiTextTheme]. static const tiroGurmukhiTextTheme = PartT.tiroGurmukhiTextTheme; + + /// See [PartT.tiroKannada]. static const tiroKannada = PartT.tiroKannada; + + /// See [PartT.tiroKannadaTextTheme]. static const tiroKannadaTextTheme = PartT.tiroKannadaTextTheme; + + /// See [PartT.tiroTamil]. static const tiroTamil = PartT.tiroTamil; + + /// See [PartT.tiroTamilTextTheme]. static const tiroTamilTextTheme = PartT.tiroTamilTextTheme; + + /// See [PartT.tiroTelugu]. static const tiroTelugu = PartT.tiroTelugu; + + /// See [PartT.tiroTeluguTextTheme]. static const tiroTeluguTextTheme = PartT.tiroTeluguTextTheme; + + /// See [PartT.tirra]. static const tirra = PartT.tirra; + + /// See [PartT.tirraTextTheme]. static const tirraTextTheme = PartT.tirraTextTheme; + + /// See [PartT.titanOne]. static const titanOne = PartT.titanOne; + + /// See [PartT.titanOneTextTheme]. static const titanOneTextTheme = PartT.titanOneTextTheme; + + /// See [PartT.titilliumWeb]. static const titilliumWeb = PartT.titilliumWeb; + + /// See [PartT.titilliumWebTextTheme]. static const titilliumWebTextTheme = PartT.titilliumWebTextTheme; + + /// See [PartT.tomorrow]. static const tomorrow = PartT.tomorrow; + + /// See [PartT.tomorrowTextTheme]. static const tomorrowTextTheme = PartT.tomorrowTextTheme; + + /// See [PartT.tourney]. static const tourney = PartT.tourney; + + /// See [PartT.tourneyTextTheme]. static const tourneyTextTheme = PartT.tourneyTextTheme; + + /// See [PartT.tradeWinds]. static const tradeWinds = PartT.tradeWinds; + + /// See [PartT.tradeWindsTextTheme]. static const tradeWindsTextTheme = PartT.tradeWindsTextTheme; + + /// See [PartT.trainOne]. static const trainOne = PartT.trainOne; + + /// See [PartT.trainOneTextTheme]. static const trainOneTextTheme = PartT.trainOneTextTheme; + + /// See [PartT.triodion]. static const triodion = PartT.triodion; + + /// See [PartT.triodionTextTheme]. static const triodionTextTheme = PartT.triodionTextTheme; + + /// See [PartT.trirong]. static const trirong = PartT.trirong; + + /// See [PartT.trirongTextTheme]. static const trirongTextTheme = PartT.trirongTextTheme; + + /// See [PartT.trispace]. static const trispace = PartT.trispace; + + /// See [PartT.trispaceTextTheme]. static const trispaceTextTheme = PartT.trispaceTextTheme; + + /// See [PartT.trocchi]. static const trocchi = PartT.trocchi; + + /// See [PartT.trocchiTextTheme]. static const trocchiTextTheme = PartT.trocchiTextTheme; + + /// See [PartT.trochut]. static const trochut = PartT.trochut; + + /// See [PartT.trochutTextTheme]. static const trochutTextTheme = PartT.trochutTextTheme; + + /// See [PartT.truculenta]. static const truculenta = PartT.truculenta; + + /// See [PartT.truculentaTextTheme]. static const truculentaTextTheme = PartT.truculentaTextTheme; + + /// See [PartT.trykker]. static const trykker = PartT.trykker; + + /// See [PartT.trykkerTextTheme]. static const trykkerTextTheme = PartT.trykkerTextTheme; + + /// See [PartT.tsukimiRounded]. static const tsukimiRounded = PartT.tsukimiRounded; + + /// See [PartT.tsukimiRoundedTextTheme]. static const tsukimiRoundedTextTheme = PartT.tsukimiRoundedTextTheme; + + /// See [PartT.tuffy]. static const tuffy = PartT.tuffy; + + /// See [PartT.tuffyTextTheme]. static const tuffyTextTheme = PartT.tuffyTextTheme; + + /// See [PartT.tulpenOne]. static const tulpenOne = PartT.tulpenOne; + + /// See [PartT.tulpenOneTextTheme]. static const tulpenOneTextTheme = PartT.tulpenOneTextTheme; + + /// See [PartT.turretRoad]. static const turretRoad = PartT.turretRoad; + + /// See [PartT.turretRoadTextTheme]. static const turretRoadTextTheme = PartT.turretRoadTextTheme; + + /// See [PartT.twinkleStar]. static const twinkleStar = PartT.twinkleStar; + + /// See [PartT.twinkleStarTextTheme]. static const twinkleStarTextTheme = PartT.twinkleStarTextTheme; + + /// See [PartU.ubuntu]. static const ubuntu = PartU.ubuntu; + + /// See [PartU.ubuntuTextTheme]. static const ubuntuTextTheme = PartU.ubuntuTextTheme; + + /// See [PartU.ubuntuCondensed]. static const ubuntuCondensed = PartU.ubuntuCondensed; + + /// See [PartU.ubuntuCondensedTextTheme]. static const ubuntuCondensedTextTheme = PartU.ubuntuCondensedTextTheme; + + /// See [PartU.ubuntuMono]. static const ubuntuMono = PartU.ubuntuMono; + + /// See [PartU.ubuntuMonoTextTheme]. static const ubuntuMonoTextTheme = PartU.ubuntuMonoTextTheme; + + /// See [PartU.ubuntuSans]. static const ubuntuSans = PartU.ubuntuSans; + + /// See [PartU.ubuntuSansTextTheme]. static const ubuntuSansTextTheme = PartU.ubuntuSansTextTheme; + + /// See [PartU.ubuntuSansMono]. static const ubuntuSansMono = PartU.ubuntuSansMono; + + /// See [PartU.ubuntuSansMonoTextTheme]. static const ubuntuSansMonoTextTheme = PartU.ubuntuSansMonoTextTheme; + + /// See [PartU.uchen]. static const uchen = PartU.uchen; + + /// See [PartU.uchenTextTheme]. static const uchenTextTheme = PartU.uchenTextTheme; + + /// See [PartU.ultra]. static const ultra = PartU.ultra; + + /// See [PartU.ultraTextTheme]. static const ultraTextTheme = PartU.ultraTextTheme; + + /// See [PartU.unbounded]. static const unbounded = PartU.unbounded; + + /// See [PartU.unboundedTextTheme]. static const unboundedTextTheme = PartU.unboundedTextTheme; + + /// See [PartU.uncialAntiqua]. static const uncialAntiqua = PartU.uncialAntiqua; + + /// See [PartU.uncialAntiquaTextTheme]. static const uncialAntiquaTextTheme = PartU.uncialAntiquaTextTheme; + + /// See [PartU.underdog]. static const underdog = PartU.underdog; + + /// See [PartU.underdogTextTheme]. static const underdogTextTheme = PartU.underdogTextTheme; + + /// See [PartU.unicaOne]. static const unicaOne = PartU.unicaOne; + + /// See [PartU.unicaOneTextTheme]. static const unicaOneTextTheme = PartU.unicaOneTextTheme; + + /// See [PartU.unifrakturCook]. static const unifrakturCook = PartU.unifrakturCook; + + /// See [PartU.unifrakturCookTextTheme]. static const unifrakturCookTextTheme = PartU.unifrakturCookTextTheme; + + /// See [PartU.unifrakturMaguntia]. static const unifrakturMaguntia = PartU.unifrakturMaguntia; + + /// See [PartU.unifrakturMaguntiaTextTheme]. static const unifrakturMaguntiaTextTheme = PartU.unifrakturMaguntiaTextTheme; + + /// See [PartU.unkempt]. static const unkempt = PartU.unkempt; + + /// See [PartU.unkemptTextTheme]. static const unkemptTextTheme = PartU.unkemptTextTheme; + + /// See [PartU.unlock]. static const unlock = PartU.unlock; + + /// See [PartU.unlockTextTheme]. static const unlockTextTheme = PartU.unlockTextTheme; + + /// See [PartU.unna]. static const unna = PartU.unna; + + /// See [PartU.unnaTextTheme]. static const unnaTextTheme = PartU.unnaTextTheme; + + /// See [PartU.uoqMunThenKhung]. static const uoqMunThenKhung = PartU.uoqMunThenKhung; + + /// See [PartU.uoqMunThenKhungTextTheme]. static const uoqMunThenKhungTextTheme = PartU.uoqMunThenKhungTextTheme; + + /// See [PartU.updock]. static const updock = PartU.updock; + + /// See [PartU.updockTextTheme]. static const updockTextTheme = PartU.updockTextTheme; + + /// See [PartU.urbanist]. static const urbanist = PartU.urbanist; + + /// See [PartU.urbanistTextTheme]. static const urbanistTextTheme = PartU.urbanistTextTheme; + + /// See [PartV.vt323]. static const vt323 = PartV.vt323; + + /// See [PartV.vt323TextTheme]. static const vt323TextTheme = PartV.vt323TextTheme; + + /// See [PartV.vampiroOne]. static const vampiroOne = PartV.vampiroOne; + + /// See [PartV.vampiroOneTextTheme]. static const vampiroOneTextTheme = PartV.vampiroOneTextTheme; + + /// See [PartV.varela]. static const varela = PartV.varela; + + /// See [PartV.varelaTextTheme]. static const varelaTextTheme = PartV.varelaTextTheme; + + /// See [PartV.varelaRound]. static const varelaRound = PartV.varelaRound; + + /// See [PartV.varelaRoundTextTheme]. static const varelaRoundTextTheme = PartV.varelaRoundTextTheme; + + /// See [PartV.varta]. static const varta = PartV.varta; + + /// See [PartV.vartaTextTheme]. static const vartaTextTheme = PartV.vartaTextTheme; + + /// See [PartV.vastShadow]. static const vastShadow = PartV.vastShadow; + + /// See [PartV.vastShadowTextTheme]. static const vastShadowTextTheme = PartV.vastShadowTextTheme; + + /// See [PartV.vazirmatn]. static const vazirmatn = PartV.vazirmatn; + + /// See [PartV.vazirmatnTextTheme]. static const vazirmatnTextTheme = PartV.vazirmatnTextTheme; + + /// See [PartV.vendSans]. static const vendSans = PartV.vendSans; + + /// See [PartV.vendSansTextTheme]. static const vendSansTextTheme = PartV.vendSansTextTheme; + + /// See [PartV.vesperLibre]. static const vesperLibre = PartV.vesperLibre; + + /// See [PartV.vesperLibreTextTheme]. static const vesperLibreTextTheme = PartV.vesperLibreTextTheme; + + /// See [PartV.viaodaLibre]. static const viaodaLibre = PartV.viaodaLibre; + + /// See [PartV.viaodaLibreTextTheme]. static const viaodaLibreTextTheme = PartV.viaodaLibreTextTheme; + + /// See [PartV.vibes]. static const vibes = PartV.vibes; + + /// See [PartV.vibesTextTheme]. static const vibesTextTheme = PartV.vibesTextTheme; + + /// See [PartV.vibur]. static const vibur = PartV.vibur; + + /// See [PartV.viburTextTheme]. static const viburTextTheme = PartV.viburTextTheme; + + /// See [PartV.victorMono]. static const victorMono = PartV.victorMono; + + /// See [PartV.victorMonoTextTheme]. static const victorMonoTextTheme = PartV.victorMonoTextTheme; + + /// See [PartV.vidaloka]. static const vidaloka = PartV.vidaloka; + + /// See [PartV.vidalokaTextTheme]. static const vidalokaTextTheme = PartV.vidalokaTextTheme; + + /// See [PartV.viga]. static const viga = PartV.viga; + + /// See [PartV.vigaTextTheme]. static const vigaTextTheme = PartV.vigaTextTheme; + + /// See [PartV.vinaSans]. static const vinaSans = PartV.vinaSans; + + /// See [PartV.vinaSansTextTheme]. static const vinaSansTextTheme = PartV.vinaSansTextTheme; + + /// See [PartV.voces]. static const voces = PartV.voces; + + /// See [PartV.vocesTextTheme]. static const vocesTextTheme = PartV.vocesTextTheme; + + /// See [PartV.volkhov]. static const volkhov = PartV.volkhov; + + /// See [PartV.volkhovTextTheme]. static const volkhovTextTheme = PartV.volkhovTextTheme; + + /// See [PartV.vollkorn]. static const vollkorn = PartV.vollkorn; + + /// See [PartV.vollkornTextTheme]. static const vollkornTextTheme = PartV.vollkornTextTheme; + + /// See [PartV.vollkornSc]. static const vollkornSc = PartV.vollkornSc; + + /// See [PartV.vollkornScTextTheme]. static const vollkornScTextTheme = PartV.vollkornScTextTheme; + + /// See [PartV.voltaire]. static const voltaire = PartV.voltaire; + + /// See [PartV.voltaireTextTheme]. static const voltaireTextTheme = PartV.voltaireTextTheme; + + /// See [PartV.vujahdayScript]. static const vujahdayScript = PartV.vujahdayScript; + + /// See [PartV.vujahdayScriptTextTheme]. static const vujahdayScriptTextTheme = PartV.vujahdayScriptTextTheme; + + /// See [PartW.wdxlLubrifontJpN]. static const wdxlLubrifontJpN = PartW.wdxlLubrifontJpN; + + /// See [PartW.wdxlLubrifontJpNTextTheme]. static const wdxlLubrifontJpNTextTheme = PartW.wdxlLubrifontJpNTextTheme; + + /// See [PartW.wdxlLubrifontSc]. static const wdxlLubrifontSc = PartW.wdxlLubrifontSc; + + /// See [PartW.wdxlLubrifontScTextTheme]. static const wdxlLubrifontScTextTheme = PartW.wdxlLubrifontScTextTheme; + + /// See [PartW.wdxlLubrifontTc]. static const wdxlLubrifontTc = PartW.wdxlLubrifontTc; + + /// See [PartW.wdxlLubrifontTcTextTheme]. static const wdxlLubrifontTcTextTheme = PartW.wdxlLubrifontTcTextTheme; + + /// See [PartW.waitingForTheSunrise]. static const waitingForTheSunrise = PartW.waitingForTheSunrise; + + /// See [PartW.waitingForTheSunriseTextTheme]. static const waitingForTheSunriseTextTheme = PartW.waitingForTheSunriseTextTheme; + + /// See [PartW.wallpoet]. static const wallpoet = PartW.wallpoet; + + /// See [PartW.wallpoetTextTheme]. static const wallpoetTextTheme = PartW.wallpoetTextTheme; + + /// See [PartW.walterTurncoat]. static const walterTurncoat = PartW.walterTurncoat; + + /// See [PartW.walterTurncoatTextTheme]. static const walterTurncoatTextTheme = PartW.walterTurncoatTextTheme; + + /// See [PartW.warnes]. static const warnes = PartW.warnes; + + /// See [PartW.warnesTextTheme]. static const warnesTextTheme = PartW.warnesTextTheme; + + /// See [PartW.waterBrush]. static const waterBrush = PartW.waterBrush; + + /// See [PartW.waterBrushTextTheme]. static const waterBrushTextTheme = PartW.waterBrushTextTheme; + + /// See [PartW.waterfall]. static const waterfall = PartW.waterfall; + + /// See [PartW.waterfallTextTheme]. static const waterfallTextTheme = PartW.waterfallTextTheme; + + /// See [PartW.wavefont]. static const wavefont = PartW.wavefont; + + /// See [PartW.wavefontTextTheme]. static const wavefontTextTheme = PartW.wavefontTextTheme; + + /// See [PartW.wellfleet]. static const wellfleet = PartW.wellfleet; + + /// See [PartW.wellfleetTextTheme]. static const wellfleetTextTheme = PartW.wellfleetTextTheme; + + /// See [PartW.wendyOne]. static const wendyOne = PartW.wendyOne; + + /// See [PartW.wendyOneTextTheme]. static const wendyOneTextTheme = PartW.wendyOneTextTheme; + + /// See [PartW.whisper]. static const whisper = PartW.whisper; + + /// See [PartW.whisperTextTheme]. static const whisperTextTheme = PartW.whisperTextTheme; + + /// See [PartW.windSong]. static const windSong = PartW.windSong; + + /// See [PartW.windSongTextTheme]. static const windSongTextTheme = PartW.windSongTextTheme; + + /// See [PartW.winkyRough]. static const winkyRough = PartW.winkyRough; + + /// See [PartW.winkyRoughTextTheme]. static const winkyRoughTextTheme = PartW.winkyRoughTextTheme; + + /// See [PartW.winkySans]. static const winkySans = PartW.winkySans; + + /// See [PartW.winkySansTextTheme]. static const winkySansTextTheme = PartW.winkySansTextTheme; + + /// See [PartW.wireOne]. static const wireOne = PartW.wireOne; + + /// See [PartW.wireOneTextTheme]. static const wireOneTextTheme = PartW.wireOneTextTheme; + + /// See [PartW.wittgenstein]. static const wittgenstein = PartW.wittgenstein; + + /// See [PartW.wittgensteinTextTheme]. static const wittgensteinTextTheme = PartW.wittgensteinTextTheme; + + /// See [PartW.wixMadeforDisplay]. static const wixMadeforDisplay = PartW.wixMadeforDisplay; + + /// See [PartW.wixMadeforDisplayTextTheme]. static const wixMadeforDisplayTextTheme = PartW.wixMadeforDisplayTextTheme; + + /// See [PartW.wixMadeforText]. static const wixMadeforText = PartW.wixMadeforText; + + /// See [PartW.wixMadeforTextTextTheme]. static const wixMadeforTextTextTheme = PartW.wixMadeforTextTextTheme; + + /// See [PartW.workSans]. static const workSans = PartW.workSans; + + /// See [PartW.workSansTextTheme]. static const workSansTextTheme = PartW.workSansTextTheme; + + /// See [PartW.workbench]. static const workbench = PartW.workbench; + + /// See [PartW.workbenchTextTheme]. static const workbenchTextTheme = PartW.workbenchTextTheme; + + /// See [PartX.xanhMono]. static const xanhMono = PartX.xanhMono; + + /// See [PartX.xanhMonoTextTheme]. static const xanhMonoTextTheme = PartX.xanhMonoTextTheme; + + /// See [PartY.yaldevi]. static const yaldevi = PartY.yaldevi; + + /// See [PartY.yaldeviTextTheme]. static const yaldeviTextTheme = PartY.yaldeviTextTheme; + + /// See [PartY.yanoneKaffeesatz]. static const yanoneKaffeesatz = PartY.yanoneKaffeesatz; + + /// See [PartY.yanoneKaffeesatzTextTheme]. static const yanoneKaffeesatzTextTheme = PartY.yanoneKaffeesatzTextTheme; + + /// See [PartY.yantramanav]. static const yantramanav = PartY.yantramanav; + + /// See [PartY.yantramanavTextTheme]. static const yantramanavTextTheme = PartY.yantramanavTextTheme; + + /// See [PartY.yarndings12]. static const yarndings12 = PartY.yarndings12; + + /// See [PartY.yarndings12TextTheme]. static const yarndings12TextTheme = PartY.yarndings12TextTheme; + + /// See [PartY.yarndings12Charted]. static const yarndings12Charted = PartY.yarndings12Charted; + + /// See [PartY.yarndings12ChartedTextTheme]. static const yarndings12ChartedTextTheme = PartY.yarndings12ChartedTextTheme; + + /// See [PartY.yarndings20]. static const yarndings20 = PartY.yarndings20; + + /// See [PartY.yarndings20TextTheme]. static const yarndings20TextTheme = PartY.yarndings20TextTheme; + + /// See [PartY.yarndings20Charted]. static const yarndings20Charted = PartY.yarndings20Charted; + + /// See [PartY.yarndings20ChartedTextTheme]. static const yarndings20ChartedTextTheme = PartY.yarndings20ChartedTextTheme; + + /// See [PartY.yatraOne]. static const yatraOne = PartY.yatraOne; + + /// See [PartY.yatraOneTextTheme]. static const yatraOneTextTheme = PartY.yatraOneTextTheme; + + /// See [PartY.yellowtail]. static const yellowtail = PartY.yellowtail; + + /// See [PartY.yellowtailTextTheme]. static const yellowtailTextTheme = PartY.yellowtailTextTheme; + + /// See [PartY.yeonSung]. static const yeonSung = PartY.yeonSung; + + /// See [PartY.yeonSungTextTheme]. static const yeonSungTextTheme = PartY.yeonSungTextTheme; + + /// See [PartY.yesevaOne]. static const yesevaOne = PartY.yesevaOne; + + /// See [PartY.yesevaOneTextTheme]. static const yesevaOneTextTheme = PartY.yesevaOneTextTheme; + + /// See [PartY.yesteryear]. static const yesteryear = PartY.yesteryear; + + /// See [PartY.yesteryearTextTheme]. static const yesteryearTextTheme = PartY.yesteryearTextTheme; + + /// See [PartY.yomogi]. static const yomogi = PartY.yomogi; + + /// See [PartY.yomogiTextTheme]. static const yomogiTextTheme = PartY.yomogiTextTheme; + + /// See [PartY.youngSerif]. static const youngSerif = PartY.youngSerif; + + /// See [PartY.youngSerifTextTheme]. static const youngSerifTextTheme = PartY.youngSerifTextTheme; + + /// See [PartY.yrsa]. static const yrsa = PartY.yrsa; + + /// See [PartY.yrsaTextTheme]. static const yrsaTextTheme = PartY.yrsaTextTheme; + + /// See [PartY.ysabeau]. static const ysabeau = PartY.ysabeau; + + /// See [PartY.ysabeauTextTheme]. static const ysabeauTextTheme = PartY.ysabeauTextTheme; + + /// See [PartY.ysabeauInfant]. static const ysabeauInfant = PartY.ysabeauInfant; + + /// See [PartY.ysabeauInfantTextTheme]. static const ysabeauInfantTextTheme = PartY.ysabeauInfantTextTheme; + + /// See [PartY.ysabeauOffice]. static const ysabeauOffice = PartY.ysabeauOffice; + + /// See [PartY.ysabeauOfficeTextTheme]. static const ysabeauOfficeTextTheme = PartY.ysabeauOfficeTextTheme; + + /// See [PartY.ysabeauSc]. static const ysabeauSc = PartY.ysabeauSc; + + /// See [PartY.ysabeauScTextTheme]. static const ysabeauScTextTheme = PartY.ysabeauScTextTheme; + + /// See [PartY.yujiBoku]. static const yujiBoku = PartY.yujiBoku; + + /// See [PartY.yujiBokuTextTheme]. static const yujiBokuTextTheme = PartY.yujiBokuTextTheme; + + /// See [PartY.yujiHentaiganaAkari]. static const yujiHentaiganaAkari = PartY.yujiHentaiganaAkari; + + /// See [PartY.yujiHentaiganaAkariTextTheme]. static const yujiHentaiganaAkariTextTheme = PartY.yujiHentaiganaAkariTextTheme; + + /// See [PartY.yujiHentaiganaAkebono]. static const yujiHentaiganaAkebono = PartY.yujiHentaiganaAkebono; + + /// See [PartY.yujiHentaiganaAkebonoTextTheme]. static const yujiHentaiganaAkebonoTextTheme = PartY.yujiHentaiganaAkebonoTextTheme; + + /// See [PartY.yujiMai]. static const yujiMai = PartY.yujiMai; + + /// See [PartY.yujiMaiTextTheme]. static const yujiMaiTextTheme = PartY.yujiMaiTextTheme; + + /// See [PartY.yujiSyuku]. static const yujiSyuku = PartY.yujiSyuku; + + /// See [PartY.yujiSyukuTextTheme]. static const yujiSyukuTextTheme = PartY.yujiSyukuTextTheme; + + /// See [PartY.yuseiMagic]. static const yuseiMagic = PartY.yuseiMagic; + + /// See [PartY.yuseiMagicTextTheme]. static const yuseiMagicTextTheme = PartY.yuseiMagicTextTheme; + + /// See [PartZ.zcoolKuaiLe]. static const zcoolKuaiLe = PartZ.zcoolKuaiLe; + + /// See [PartZ.zcoolKuaiLeTextTheme]. static const zcoolKuaiLeTextTheme = PartZ.zcoolKuaiLeTextTheme; + + /// See [PartZ.zcoolQingKeHuangYou]. static const zcoolQingKeHuangYou = PartZ.zcoolQingKeHuangYou; + + /// See [PartZ.zcoolQingKeHuangYouTextTheme]. static const zcoolQingKeHuangYouTextTheme = PartZ.zcoolQingKeHuangYouTextTheme; + + /// See [PartZ.zcoolXiaoWei]. static const zcoolXiaoWei = PartZ.zcoolXiaoWei; + + /// See [PartZ.zcoolXiaoWeiTextTheme]. static const zcoolXiaoWeiTextTheme = PartZ.zcoolXiaoWeiTextTheme; + + /// See [PartZ.zain]. static const zain = PartZ.zain; + + /// See [PartZ.zainTextTheme]. static const zainTextTheme = PartZ.zainTextTheme; + + /// See [PartZ.zalandoSans]. static const zalandoSans = PartZ.zalandoSans; + + /// See [PartZ.zalandoSansTextTheme]. static const zalandoSansTextTheme = PartZ.zalandoSansTextTheme; + + /// See [PartZ.zalandoSansExpanded]. static const zalandoSansExpanded = PartZ.zalandoSansExpanded; + + /// See [PartZ.zalandoSansExpandedTextTheme]. static const zalandoSansExpandedTextTheme = PartZ.zalandoSansExpandedTextTheme; + + /// See [PartZ.zalandoSansSemiExpanded]. static const zalandoSansSemiExpanded = PartZ.zalandoSansSemiExpanded; + + /// See [PartZ.zalandoSansSemiExpandedTextTheme]. static const zalandoSansSemiExpandedTextTheme = PartZ.zalandoSansSemiExpandedTextTheme; + + /// See [PartZ.zenAntique]. static const zenAntique = PartZ.zenAntique; + + /// See [PartZ.zenAntiqueTextTheme]. static const zenAntiqueTextTheme = PartZ.zenAntiqueTextTheme; + + /// See [PartZ.zenAntiqueSoft]. static const zenAntiqueSoft = PartZ.zenAntiqueSoft; + + /// See [PartZ.zenAntiqueSoftTextTheme]. static const zenAntiqueSoftTextTheme = PartZ.zenAntiqueSoftTextTheme; + + /// See [PartZ.zenDots]. static const zenDots = PartZ.zenDots; + + /// See [PartZ.zenDotsTextTheme]. static const zenDotsTextTheme = PartZ.zenDotsTextTheme; + + /// See [PartZ.zenKakuGothicAntique]. static const zenKakuGothicAntique = PartZ.zenKakuGothicAntique; + + /// See [PartZ.zenKakuGothicAntiqueTextTheme]. static const zenKakuGothicAntiqueTextTheme = PartZ.zenKakuGothicAntiqueTextTheme; + + /// See [PartZ.zenKakuGothicNew]. static const zenKakuGothicNew = PartZ.zenKakuGothicNew; + + /// See [PartZ.zenKakuGothicNewTextTheme]. static const zenKakuGothicNewTextTheme = PartZ.zenKakuGothicNewTextTheme; + + /// See [PartZ.zenKurenaido]. static const zenKurenaido = PartZ.zenKurenaido; + + /// See [PartZ.zenKurenaidoTextTheme]. static const zenKurenaidoTextTheme = PartZ.zenKurenaidoTextTheme; + + /// See [PartZ.zenLoop]. static const zenLoop = PartZ.zenLoop; + + /// See [PartZ.zenLoopTextTheme]. static const zenLoopTextTheme = PartZ.zenLoopTextTheme; + + /// See [PartZ.zenMaruGothic]. static const zenMaruGothic = PartZ.zenMaruGothic; + + /// See [PartZ.zenMaruGothicTextTheme]. static const zenMaruGothicTextTheme = PartZ.zenMaruGothicTextTheme; + + /// See [PartZ.zenOldMincho]. static const zenOldMincho = PartZ.zenOldMincho; + + /// See [PartZ.zenOldMinchoTextTheme]. static const zenOldMinchoTextTheme = PartZ.zenOldMinchoTextTheme; + + /// See [PartZ.zenTokyoZoo]. static const zenTokyoZoo = PartZ.zenTokyoZoo; + + /// See [PartZ.zenTokyoZooTextTheme]. static const zenTokyoZooTextTheme = PartZ.zenTokyoZooTextTheme; + + /// See [PartZ.zeyada]. static const zeyada = PartZ.zeyada; + + /// See [PartZ.zeyadaTextTheme]. static const zeyadaTextTheme = PartZ.zeyadaTextTheme; + + /// See [PartZ.zhiMangXing]. static const zhiMangXing = PartZ.zhiMangXing; + + /// See [PartZ.zhiMangXingTextTheme]. static const zhiMangXingTextTheme = PartZ.zhiMangXingTextTheme; + + /// See [PartZ.zillaSlab]. static const zillaSlab = PartZ.zillaSlab; + + /// See [PartZ.zillaSlabTextTheme]. static const zillaSlabTextTheme = PartZ.zillaSlabTextTheme; + + /// See [PartZ.zillaSlabHighlight]. static const zillaSlabHighlight = PartZ.zillaSlabHighlight; + + /// See [PartZ.zillaSlabHighlightTextTheme]. static const zillaSlabHighlightTextTheme = PartZ.zillaSlabHighlightTextTheme; } diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_a.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_a.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_a.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_a.dart index 74c8fe3dd6fb..00d82c8ac0d1 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_a.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_a.dart @@ -248,13 +248,6 @@ class PartA { '0de11879e2d89ba73bc78ef631d47d15340f06141bab94eb911ce2c68a1d52b6', 95316, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e063fe1344537c871cd1d6c784ee88f369720f19ab3625c5b9aaf70b9f32261b', - 185992, - ), }; return googleFontsTextStyle( @@ -1272,20 +1265,6 @@ class PartA { 'c7fe24d1b0f8905029e4b0b441844e4ba602d789180e26f62e253cb25fc629eb', 74968, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1e064066709ed9870be531b8d0241c03ec56a7c65323fe3295acaaa6f29d6ca3', - 247360, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'f6a4a58c402e50f946c067034051a654544f51b7ef8b1dddc7e05ede6ba156d9', - 260092, - ), }; return googleFontsTextStyle( @@ -1422,20 +1401,6 @@ class PartA { 'edafc60fd97a321ce0ec4c0778c634529db68c0b0cdcdd824514fb91913beeda', 68856, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7603b77f43e15131e802baad926034f0b1288231578f8487e728f99a222362e1', - 101908, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '1cf6e0ec0aed15b1a28baaf65a1e5c10510c8c267fcb0638c61a02c32c5dbed3', - 104700, - ), }; return googleFontsTextStyle( @@ -1579,13 +1544,6 @@ class PartA { '9be1aaa232482c5831dc860561a18b0043bca4edda9b86d9f4eb960725e4e3f3', 71984, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c156032703e5ed79b47f237326c70983729fc69f4c8cddc6cd4a3fe852d47b53', - 387460, - ), }; return googleFontsTextStyle( @@ -1854,13 +1812,6 @@ class PartA { '7950f267e8e99759fd5bb2ef3e451419523e711fdb1ebeb62faa7bb8941b4dd7', 195948, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4dcc86ecdfeaed82140ead0dbce31b9855774ffc46b1a24bdd54b898465a9a81', - 778148, - ), }; return googleFontsTextStyle( @@ -2446,13 +2397,6 @@ class PartA { '821488fa47b46a4a321005aba1e160af34c7871c8c51ec9442a15a6801e201d8', 119992, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8a944b4732e51f22d17b79ee1d3e7a6fc5edd3cacb58d06d88d1810d1324ad43', - 192788, - ), }; return googleFontsTextStyle( @@ -2669,13 +2613,6 @@ class PartA { '87f1319d5deafcae1eb29afb189c0e45575cd29da932597f677c0487f65960f5', 62076, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6f6e2396fc2eacaa068a4281a8059ce2cf6f8176b2b12b2f6e6c5c998c269ae3', - 106092, - ), }; return googleFontsTextStyle( @@ -3056,20 +2993,6 @@ class PartA { '0fa0b50a97a4e1b1d87669427749a196ec6d4e8315d61b7bb5991c062d37abf6', 49596, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ae118943461337f0dd41f78460a33cb11a8a0e2c49c1cb3ce15aefd79227539d', - 123912, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3ecde583e38079b8238bc9181b29da93e35a2d3b2f4b3c6f2c914ceb21e6137a', - 136828, - ), }; return googleFontsTextStyle( @@ -3415,20 +3338,6 @@ class PartA { 'e8db0c5c42191185f97aa7425d732cb66e57461c1d32875192f958242fe65a90', 163692, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd0cdffbabc9a5965dd1158706b322d8f6ee037747f4b2b5d67499974fd1945bc', - 271108, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2ebdbd04af85c8c6b25a697db00c2d580db1fab9f02d75f95c673dcea5aff752', - 268140, - ), }; return googleFontsTextStyle( @@ -4141,20 +4050,6 @@ class PartA { '590abd7b7e1703c7c77d2a912d4fdff926283402acda248fe350fd7c90465e2b', 74692, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5b2525e844a0d8fbf93320979d9543e512973e424d11095bfeccb288442b993c', - 145804, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'c3922cbbda10899e3e8a9c5cf3c43b991a9cbe01ebba201810d0eef339ee0555', - 151712, - ), }; return googleFontsTextStyle( @@ -4385,13 +4280,6 @@ class PartA { 'ed235303247e52aff2765367b37399bd979e6ea5a79da7cadaa63481a3647002', 102720, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '638e7e1b421ca1f996dd7538249da127f7cf1859a86bd65e821869f3d683d248', - 202976, - ), }; return googleFontsTextStyle( @@ -4935,13 +4823,6 @@ class PartA { 'd486f50e52f641f79456dbc1efe2214a0231f6e0a8daa850eb4d79bfc5ec3bf0', 508092, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b71de587732507db120b193a088c6c9dbeb4a16b4cf88ae3477597afcf2c3902', - 859584, - ), }; return googleFontsTextStyle( @@ -5980,20 +5861,6 @@ class PartA { '40500c3c129e1875dc831ef647319f4f6a5dce4d63f5bc5f894e4ed806033a70', 68168, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '92bd974ebba3af05fa9f62f4389b73ff06e62f7189e59e02d9e04739cede7f12', - 107092, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a88b9ee5bdd2c45d2844fd000173e9657d570d61606431bf17b933e4d97b500d', - 110272, - ), }; return googleFontsTextStyle( @@ -6490,20 +6357,6 @@ class PartA { '2ed477c541c74fa7465c03013b9c20578f19ea190a1ea2469f6a5a9b80f55a5c', 79020, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '99013db5aaf3e592c4a0498497d349b244c07cdb0d6bf9883715f523eac9dd99', - 119824, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4c238c0bdf786c35c1c1072a32962318b81cce8dcb3c1ebf75810920e6db270d', - 127284, - ), }; return googleFontsTextStyle( @@ -7385,13 +7238,6 @@ class PartA { 'b594a3c5027823dcc91220c67cd56312ecda0b41c56f58ea0c37690695807111', 66692, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '48fd776892b83cf0060f435e981c8b8c6480febc151177dbe816e47eb188b4d4', - 110788, - ), }; return googleFontsTextStyle( @@ -7598,20 +7444,6 @@ class PartA { '72abb16f65be3233d9ba0e21ac957763a866adc6365ae8d4eb07819ec97bda8b', 77832, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd7afdb4dca66b5bd72dda48a2f42fb26fc594412e5677dbf37e26699b1b12042', - 123320, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd4592138c47d2354f0c8d868e6dd005a66c82769f58597e262561924bb431eb0', - 127872, - ), }; return googleFontsTextStyle( @@ -7790,20 +7622,6 @@ class PartA { '2843934ed603028157835afdd01e842ea0874e28f0173574c17414bbdd242080', 81240, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9655c0e708d96faec04d76b673e76636385c77124cd53ee19824ef180a4f4eaa', - 133432, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2d0a29ee49e157fc609d2b7b279d23adb43324804e5292b38fa8bd53e2b61cfe', - 139928, - ), }; return googleFontsTextStyle( @@ -7954,20 +7772,6 @@ class PartA { '0f9cdcec8417afd85893b4b52f9596216ec7770be3a15ab573541430796987af', 89908, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ada0131c4643709a119f93b060f278073e41b7a1912f4cca63d27025c8352089', - 144920, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '10e4194edd7d364072d0d6769bd518f8a67707cd71eff8731ba18bd6a2d88eb1', - 144016, - ), }; return googleFontsTextStyle( @@ -8212,13 +8016,6 @@ class PartA { 'db9c6b4f6d2c1c49f420a3ba91eec811a11298b18a536fbcebcaf538048fc4f2', 244804, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b3a27a17f2a1435be48d9e03cbb486acc3982fbc242e8a87a0ffaf8f8f7b4271', - 1308056, - ), }; return googleFontsTextStyle( @@ -8355,13 +8152,6 @@ class PartA { '2aeffca166eb0b892d4b0b4b50d3c518a212bb024783c356a9177d02ef74a2cc', 411564, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd56456145afd28a1eb1c06c1dad55d5debe2087bc1416d60d4d0be20307be021', - 2155240, - ), }; return googleFontsTextStyle( @@ -8498,13 +8288,6 @@ class PartA { '593eae7ea849047b991598c369665814ba8e02a35cb9b3bf1984c8160a6fc421', 291780, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '430da3f751bc1f111a6197d255ff135a3492a54b6324573d8c97dae6ae7efaa7', - 1604592, - ), }; return googleFontsTextStyle( @@ -8641,13 +8424,6 @@ class PartA { '605c88041154ad7df2da3f53929020ce7ee4a64157880c17bb51b47b5475026d', 84364, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1a748151f0052ea557e5f8ae3d8102c8927ed31453c7d869618bcded1cc54aca', - 341116, - ), }; return googleFontsTextStyle( @@ -8784,13 +8560,6 @@ class PartA { 'e1671191b73435b5405ba4bebd99ee31301618b7cc493f9110e792b09569654e', 243652, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'be1888a3951370fb11727719edb016ee2d9d0a14d1f3aba7c94906e349ca32ed', - 1327196, - ), }; return googleFontsTextStyle( @@ -8927,13 +8696,6 @@ class PartA { '1177f3eb2120b3a6918533a9fb53ac1b1cf706e3269f2dbbaae92070d4b01eb1', 105344, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '376b03953edacb5e59c75e182f2f97795a6a6d09681a5234cc0b49407a27c451', - 389736, - ), }; return googleFontsTextStyle( @@ -9070,13 +8832,6 @@ class PartA { '1d5384cf7cbc37b8a82f6e3e0e5816c184d7c10a6c8f13d29f4948ebabf53242', 110232, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3a380745b7cdf8050adc09babfcec800444791bfb434276811ebda73e564548c', - 630008, - ), }; return googleFontsTextStyle( @@ -9213,13 +8968,6 @@ class PartA { '8f46e2aa78c0e388c5c6176e21529e34ad2234a66c23fc59bb8c68873d4af5bf', 164816, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7f9ebf440ee678fe85505dac75f46482b56a62b9879b6638d558a850fd4a5348', - 830316, - ), }; return googleFontsTextStyle( @@ -9356,13 +9104,6 @@ class PartA { '359e0241bd4f688084d4832cd7989344ec1f72eecd8fe236232393f9dfd1c4c7', 104944, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '74f5c014ec24a614a452bd740d1ac96bea78369dc28d2e74a3d0acadabe5d36d', - 784800, - ), }; return googleFontsTextStyle( @@ -9499,13 +9240,6 @@ class PartA { 'eda5e0817c9c94efd72eb26d86a77c57a4e519ca3ac95955f7a9ac81da00f58f', 310964, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bab2618cf2f11deefb1459087c06c187f54874624585aa143bf56b9739afeeac', - 1784020, - ), }; return googleFontsTextStyle( @@ -10535,13 +10269,6 @@ class PartA { '40e7a8d1869d3261eaab2ecbe7fc74de4205bcac5eb7957ee0540c25e8dbfddc', 36772, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '93936e6cdd470337961ccae284b07914c966bb8f0cf7c757bb1a49fb42d8e571', - 73036, - ), }; return googleFontsTextStyle( @@ -10671,13 +10398,6 @@ class PartA { '50e15670f34d33a64fd54b10ea4e1ea173a63c238b772cc9d7ab93d88e0ba3cc', 110088, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b2cb775316ae8cc47187b4c8737fcc7c39fe12177008d3fb1f4b13cd2fc5e6a2', - 208892, - ), }; return googleFontsTextStyle( @@ -10884,20 +10604,6 @@ class PartA { 'f2bbff0111626c3a7f5f17a04674e85c7c675a387aff69439c79f19da8416728', 61476, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0231e2c0d0ccb529bc013fb7efb582fe9bfd557ed38598fc3f714d3c96ff2ff3', - 189316, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '5bc699b378901d76bf6d8c1f0c71959bdcc451d6515dfd160c5678a186b1e1ba', - 196340, - ), }; return googleFontsTextStyle( @@ -11546,20 +11252,6 @@ class PartA { '9871c068f746cd4b74f665d6fab2b0ea837d23fbbb96f0d9a8e44a54e064f63e', 123292, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '53ad00adc45c2cc3266ab69f8a9da06b7a2bde4c1b33449acf33edfd5c65185b', - 616364, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '1212ef2a7116398ee961e4f417b021833dbbf3500f30219016e985ccbf4c8edf', - 693508, - ), }; return googleFontsTextStyle( @@ -11783,20 +11475,6 @@ class PartA { '3ef237ec5c5d6584effbdfd1a23051569447d6ad8243dba4e64b2afddd5de009', 60708, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '95642731919bc390ca62c85e42c5b167ed70c9c0102c34802cb607775b921469', - 86504, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '75f561cb45865ae4362d7c0b240a2702c2fde6296f35588743687dd0dcb4b97f', - 91312, - ), }; return googleFontsTextStyle( @@ -12201,13 +11879,6 @@ class PartA { '07b88f1e5035ab77d666ab51b018fdc73130f1707d74220d1bced9bc363898ac', 192356, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd73cbbba238b518c571d62d1ed3b1bad5fd712bf7baea2ba57ace03b4690a113', - 327788, - ), }; return googleFontsTextStyle( @@ -12344,20 +12015,6 @@ class PartA { '39d6bb783ece1b7d01f2f8691099d887232af0b2f123efdd7689ae3f73c078d5', 339292, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0a26e4aa077522c36a0ef7b3ec70677ee69c15e49b82f1c79ca55317fade603b', - 498664, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a534007b4d4ad940ba6d201be5f473065d0c7a2170582b37e4a3eff36463b933', - 541100, - ), }; return googleFontsTextStyle( @@ -13243,20 +12900,6 @@ class PartA { '33c95a21ced74d49314e16cc465010d9f0c2d7da7cc84385b3a9b2fd35b3eb81', 74780, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7050629eaf4bff59947c801982a7bea09417bc960841903660e83135e6287626', - 356140, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4f9b40e28a5be85095ff04250e21ccc71c0e6df06a9273c4fab96f0c9e43d743', - 402456, - ), }; return googleFontsTextStyle( @@ -13647,13 +13290,6 @@ class PartA { '27f7f76aa329a3a7c8ae2ef3878fcd399a274531638b9135607dd01e9aaba576', 47512, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '808cfd826f35be813fe644d0a00e3bbf534caaee6e2389a7c9e6a902d58141ea', - 78812, - ), }; return googleFontsTextStyle( @@ -13776,13 +13412,6 @@ class PartA { 'b7aece8121b5f25dc1ae3ea6dcef6c0fb9852ba1345b6188bd5c3078ce849ae5', 2596772, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0eb668b1573aed584dc04120dc2b11da7b45942431ddec13c2927265f3d5e538', - 5766472, - ), }; return googleFontsTextStyle( @@ -14379,20 +14008,6 @@ class PartA { 'f320ea96088a3973672e0c4ca5a8d0e0b408609fdf1feb118379e06a637f2e61', 33960, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8036e409038d69d0a16eb071a0c7e065d0a8b6c05bf5b547a0dbadafe09a9d43', - 51832, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '507147f531ab3cb44c83b3785e6b4483223853dabff2c5e0f0d64422da3a5359', - 54056, - ), }; return googleFontsTextStyle( @@ -14579,20 +14194,6 @@ class PartA { '7d7752b33ab771db2bf6ed09a411bba747a7796110f91ccbeeff320afaf4bc5d', 50720, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9df490718a18fc72ccf4f64ef5c3871588ede0b55a090b910cc15524548e56ff', - 112648, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '9bab2fa8360125b946e2ef841df506d056829463a35befcfce9a97173fa73c31', - 121836, - ), }; return googleFontsTextStyle( @@ -15897,20 +15498,6 @@ class PartA { '7b5f49de9d87a30a9c3b65ec9602b36801ad6ddf95f133ea515e3ee61e8d4b83', 37488, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6df44c1484de75e93874c62a548e8d727f5f7ae702091d83e48ea29b354aa123', - 75648, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '40814a0e42f15dee9c6bb124a9d02561a9c91357287f2736cd4c3466eb765d86', - 80288, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_b.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_b.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_b.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_b.dart index b6f51bd0d399..f1bd9baa3997 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_b.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_b.dart @@ -1498,13 +1498,6 @@ class PartB { '2f1baa3810bd3d7efa8b9979e15d8d3636d837c915ab7b305e2ff13d2ce3a440', 74336, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9061772a99b4182835af697d6c2100cded3e1e2f729073acd9933b670fdf3898', - 119068, - ), }; return googleFontsTextStyle( @@ -1620,13 +1613,6 @@ class PartB { 'cb9f4e0c726fcc530057e47a9302668cc05cb3e5a20c23e8e053b26a4baf896e', 417540, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0812ade36b45afef512c178fcb4edead2982bed14ba5a41c4738994825e59778', - 682556, - ), }; return googleFontsTextStyle( @@ -1742,13 +1728,6 @@ class PartB { '6dfbaa99325193b0d7804734c3bb74d0171e2fa768560fda5a678a7c78921168', 419568, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1367a9d5b47e87924b42d65cb066a99f7ec4e4c421f866c6dbddd0762e477cd3', - 589696, - ), }; return googleFontsTextStyle( @@ -1864,13 +1843,6 @@ class PartB { 'ae54099a7d41c5fb35dfabfcf8649894e236e589a861f05433904a9512bf72a5', 172924, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd496ce45d53e290014b817a6e98048bd9cd64014e1daf2ec0bf012c32c1b2a54', - 274904, - ), }; return googleFontsTextStyle( @@ -1986,13 +1958,6 @@ class PartB { '2a1d5ff974326a5e746aad12dd23b68542a137965d27c962064efd7bf4c3a339', 273264, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '575416a9281394f2cece389412757ba4ebc06ef3c1ff25476ab15634ef04f885', - 460352, - ), }; return googleFontsTextStyle( @@ -2108,13 +2073,6 @@ class PartB { '9b4bb63068098769732ad53ffffcc15210f49e5923c476032f762139a78ddde4', 191496, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd48329e30585f5b80f47f9fc7d6a14373a47d3ac3ad9c5e4dc48f77b880a64b3', - 320012, - ), }; return googleFontsTextStyle( @@ -2230,13 +2188,6 @@ class PartB { 'd6bb69f8d5834ae1f95449eccbd3012f616d392046948daebd10bb5259ad2021', 269480, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '51d88f573747bc8472e0b844aecf2f199e7d47f0d7415ea29cc33dc98655a0be', - 450668, - ), }; return googleFontsTextStyle( @@ -2352,13 +2303,6 @@ class PartB { 'cf3e37c083e6f52a6620e04613c85493e521991248475c695f4331c8bb5d9e23', 148156, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e7617c64103505bf4e8e1f95e1676dd38951968764c41ca5205ec11aba521aa6', - 243164, - ), }; return googleFontsTextStyle( @@ -2474,13 +2418,6 @@ class PartB { '9a467c5c1e0704b93a4bc5ee5af508f6b8a8759a559378c5b03d3658ffaa0b2b', 281028, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '41efec4f6e1295f38b0519f42827f14f37bc609e6449333bd876525adbe35994', - 472424, - ), }; return googleFontsTextStyle( @@ -2596,13 +2533,6 @@ class PartB { '3d5307373576200a4f69ef6f88f40c652418815ed086bb9ff7ceba5ccd0e45b8', 388224, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '271b31c6886ff34056e959a4a52942a067025616732289cc10e6a872cd7bceca', - 655032, - ), }; return googleFontsTextStyle( @@ -2718,13 +2648,6 @@ class PartB { '6ddc96f6d0a16bcddd46bfb6e1b327a9de5b4f1d3d97a407bfee1dc5a947c0e2', 171224, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '67cceb531860e028703ed4b2b7ee600eba3d25df341b70b22f21b0460c8acb9b', - 285532, - ), }; return googleFontsTextStyle( @@ -4022,20 +3945,6 @@ class PartB { 'db84505f35cf700d26a0837e6571907cd06d702176b960fa7f2ee9e149967385', 61520, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd63577add538495763ab850dbaffc6644303be1f253a5af9e548296a4835259a', - 95508, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ad68284a827822efda0e5fcf6050897ec711713eb67b98b73ade241580612ba9', - 99736, - ), }; return googleFontsTextStyle( @@ -4144,13 +4053,6 @@ class PartB { '904501629ab7ee5e3626978912ee38879ea633cf6693ea3ae3ee0b08e9a0ec74', 79232, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '19955426caaca09f8474aaf995b7f04ddf2975dadbedff504ea6fed40623bfc0', - 125012, - ), }; return googleFontsTextStyle( @@ -4956,13 +4858,6 @@ class PartB { 'f6ce61f15d0574baf628833f33ae79f4a2dada6b198b318df31b4d951866f4b9', 286228, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2284432f36dd6cb04b4b40cee4bf9e1332c4cd8d51e8a76075d7e5063161da41', - 674700, - ), }; return googleFontsTextStyle( @@ -6095,20 +5990,6 @@ class PartB { '2abf48e1697e5b7ce9e369cb567bac1b2b1a727145aeafd6f75cd79ee42e646e', 56736, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '180181c8d9eadf841a42b3ad65f8c17602632d213cb0758f29d04c15f7f4ac29', - 101452, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '18e1c2823b087aec5f07486d112ee009fa8d2eec51fc8f0388ecc4d0ac5d5c6a', - 105020, - ), }; return googleFontsTextStyle( @@ -6520,13 +6401,6 @@ class PartB { '9ee8f9d3e06cd96b25dbc01fff3ff31326ba2a7db487a188d334d0acf470db86', 63640, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fe73002b1650eef1381da3d1501d51f1818899ef00dcec66bd0fae703d066428', - 227904, - ), }; return googleFontsTextStyle( @@ -6670,13 +6544,6 @@ class PartB { '68993b91538bec40487bd17215a935950453d8ad3c06e2d95a5e8a8c7e1c60a2', 112436, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '434cee90b7eaea8e227afe031d626e9b935cbe86881a08c25041c66f0dcf9dfa', - 473172, - ), }; return googleFontsTextStyle( @@ -6820,13 +6687,6 @@ class PartB { 'c6886f2ff96eb848292d43369dcaa7cb73f3b386f982132fb212fc5823028dd4', 66120, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '327cf16b5765967838a7c7262cfe56453d88878c9145959d2e42bfb3f539ed2d', - 234916, - ), }; return googleFontsTextStyle( @@ -7304,13 +7164,6 @@ class PartB { '1a312280d99e51163175a4809d6c504e14516ca43c9c6ec75af200a189c040de', 61836, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b59eb9db3bc017bb4ef9a48b092e76d7e994457553fcc11bc1fc8ec393bd3f9b', - 159288, - ), }; return googleFontsTextStyle( @@ -7764,13 +7617,6 @@ class PartB { '394d3ff6eefc431673c59154269d8a6c89294127a4b8b312997d3a801a760f13', 65272, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'dc8faffa61cf8fd229f85a9f95b8721cc35bbb7679d11f8452c74462bddfe405', - 113660, - ), }; return googleFontsTextStyle( @@ -7914,13 +7760,6 @@ class PartB { 'ff98423a09c314fb0e076b0158834f60e5bee55021e540a15b6a4293fdeddd15', 61688, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2d07a9b0313ec8a9c04d50ed0abaeb7a027afa239534fb70d95468b0802f3632', - 109056, - ), }; return googleFontsTextStyle( @@ -8064,13 +7903,6 @@ class PartB { '5f775703bad34af155c9376eb21f57a0823f51feda4e87c3c72c6cefa9632ca6', 80012, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ca61741473687a80769d560be8db7263d1da824b34d09c4ad6f8f3d6242c9f75', - 145216, - ), }; return googleFontsTextStyle( @@ -8216,13 +8048,6 @@ class PartB { '01839e1471deffa7eeda541bfd6662e80698d4b0310d791c09a5c01f79e921db', 52932, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2760abccf2aaa6b456ce8df70ab8eec63c37c1e48c812ff3d8992f427b30cc31', - 98644, - ), }; return googleFontsTextStyle( @@ -8366,13 +8191,6 @@ class PartB { 'b4a26662841e440dd144704d1cd77fd4f789ecd0845922e4593d666b57ee8a30', 71088, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b5743c7dcc327d4d485e9f28425f0b7762c941a5d06be1cd75051e1fe7b8ed46', - 134832, - ), }; return googleFontsTextStyle( @@ -8518,13 +8336,6 @@ class PartB { 'be348eaa146c959984be78f63c609b2ff7d78ce00ec8619df56c32ae833fc4af', 85752, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8b0e7e09820514bbc2031455f8f42e8caa45b5a27d0fef2369bb64d11aba0a4f', - 152532, - ), }; return googleFontsTextStyle( @@ -8668,13 +8479,6 @@ class PartB { '18ee8c858c949a1aa6b8b51135a67ccd3200b0cbc114c9a54e51e69b878e84ae', 75068, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a1d81696ee0ace340fbddbe7cf9f780b49f7943100cacaa7665df278c1376532', - 124672, - ), }; return googleFontsTextStyle( @@ -8818,13 +8622,6 @@ class PartB { 'dd919f49893f260633a013127b188a5105c3b45399cd80b649be3b720acf6731', 97008, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2ce203dcea80de12c1405f382d428615efcf251d01cd831ed261924d03b7486a', - 164916, - ), }; return googleFontsTextStyle( @@ -8970,13 +8767,6 @@ class PartB { '277a12748cf2dc78199a58524184a3dbd3b0cc61ecff8d191193cbc3506b29fd', 70248, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '85fe1da10244eaf549c2a2aaafba6059b0afac82d9eda460ee987b6fac4dd87a', - 118028, - ), }; return googleFontsTextStyle( @@ -9120,13 +8910,6 @@ class PartB { '90c716dce5fc9172f4dc656310c9ac98ee30eaae073f669f779b46ac3c8535cf', 92012, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8d4bb2ce553c9a1e6da70510255e9693c24d7bba5a2af4f3d5259261cbda9f45', - 158364, - ), }; return googleFontsTextStyle( @@ -9272,13 +9055,6 @@ class PartB { '70b320ad07c6e08a39b807c1504b6cce02f4bbc2e99c10f6040715c9022f12e6', 55780, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2d80aa59e9113dc7ee46cb8eb79470cbf56decc252febeea72f04f43c6d0ce50', - 102372, - ), }; return googleFontsTextStyle( @@ -9422,13 +9198,6 @@ class PartB { '3e90d6fbb09b1d29c3d64e3c834d53b3599919b358a2b0c3814b789c5d09d29e', 75944, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1238c89d71497799eca5c5d0a6452d42d9ed364c8ccca75ad89e155646b7719b', - 140668, - ), }; return googleFontsTextStyle( @@ -9635,20 +9404,6 @@ class PartB { 'c785285b39edccdce0ce2c5cc3dd0bc2717542eeea67499577a6fe0c1a412eb5', 150824, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ca04a0c97b274ff1ecf667d001c9e3d13a933a8434dc1f20a2ba0e26fd0f574b', - 259372, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3a20689abd3237c5c604651231d05f14d276b636e4903a48f4ddc90582c4b894', - 248360, - ), }; return googleFontsTextStyle( @@ -10471,20 +10226,6 @@ class PartB { '34725af43e2782087b5833e45a3f0f559aade9e38773bff4559aee3b477b19c1', 47812, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1a58b8964c5df0c7a8dc6d835c65fb99ec95c1fd7c1a5fe2aeaf55b44954faef', - 129832, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '6f717864e83c38f220fb9e5e4f376e5a14b6bb89b35af54f05f9fb8ba82d5de9', - 139396, - ), }; return googleFontsTextStyle( @@ -10649,20 +10390,6 @@ class PartB { 'a5f64145693eaf4de88cd1c4f75f9067f7763bf436872cf374ffe3f587e45dad', 56024, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c78dff2da0c7fd544efaf961e38e74344104035a6f90ea80c349e772b147df2a', - 149196, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0f0548c59b8922be0183c18bc17deaad67797eb761968e487905fb90c44cbe85', - 162496, - ), }; return googleFontsTextStyle( @@ -11958,13 +11685,6 @@ class PartB { '9d6e6be444efda1fd2d8af9e289b8c09c3ab441b8006bddb2b49c96f97841d07', 82308, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1d5c8cf21890d5ccde69404f688e6783cbde4206cc1c9bb4c9d052564f2ff205', - 371752, - ), }; return googleFontsTextStyle( @@ -12275,20 +11995,6 @@ class PartB { 'e85e1ad860782d816e9cfef3d29b8d5c9167e6c185b387399bb2c9d127d9d2b4', 121040, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '34ba8f14ef9f6f316257eba6d4d26a2c0d9c25fc263b44b590ff48de9f113be5', - 185800, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '83cd610771bbfc12ffa39b1cd8e8eeece1b17c2d0843f72044b5411944f2fde2', - 184988, - ), }; return googleFontsTextStyle( @@ -12658,13 +12364,6 @@ class PartB { '573cefb59454135f66ef26f66f19e752b609abe87068def44f83e167671d41bf', 47084, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9119d610f619fc8c9f19d68adf8851ad312aadb8a24282f0b2effcfce78781eb', - 72888, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_c.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_c.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_c.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_c.dart index 7b4fe80f7ee5..8f9f5ab1ee46 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_c.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_c.dart @@ -95,20 +95,6 @@ class PartC { '18282933cf85ecebbfe995c8f57c4ab5cb7b6f44b4a968f7dcfe7052f423a517', 64480, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee4faad386e1155f65d624b03087492fd0b48780d53800cdfffa5c4e37c2c9a1', - 151236, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a8aa77fb08bade4f3b23e8ecb0bd095fc98796720681ac9f565a5e4d212d0669', - 140780, - ), }; return googleFontsTextStyle( @@ -600,13 +586,6 @@ class PartC { '80a528494266452a76da3083f282f066a5d1e283ac387a1935b100808e028073', 91724, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e9619ea7be71b3039584fdd50a4d17e1d179efe2ebce8ac7558b53afa27daccd', - 350640, - ), }; return googleFontsTextStyle( @@ -743,13 +722,6 @@ class PartC { '2b36783e59f001c60947d2f319a9b656f14d412586acd770e2916631429f1499', 159648, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd98926b0538fd9dcd624f086bd2dd8e62f77b7059edf2d05ca3f1335662f8278', - 571464, - ), }; return googleFontsTextStyle( @@ -2752,20 +2724,6 @@ class PartC { '1ca7e8d82ce826fa3a3c027a1fb9094af48f16dc129c3e1c5546d359cca3ac5a', 302088, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2788907a1303ab5b6cf6e1fca55cf428d5321cbc050b01bf24c7d36d6e716e2d', - 650684, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'bc21e4d54c5e106938ea7809c1c501c9f7574db7fae9593c6c59e4eb0110d8ff', - 473720, - ), }; return googleFontsTextStyle( @@ -2930,20 +2888,6 @@ class PartC { '511ff0069e92e1a9844068eb5efc2e60f22c649efa84d7f7d36d87e733d51103', 266572, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0e7424ecb2e9471d7a0cf1377bfb4f3ec952cf6ef5ab9aa8428ff84fba47496e', - 569388, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '616cf01e55816d77208c3660bff9754d6d083699f961fe1f7bc6df8e65431fa0', - 421628, - ), }; return googleFontsTextStyle( @@ -3268,13 +3212,6 @@ class PartC { '102129cfacbed69271fee87f35fef532213e503a719337922813f45427827113', 51592, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c429e81fd2794d8a1868d5a69ca0919e59212597136ee3427a36cd30c8d73f65', - 181364, - ), }; return googleFontsTextStyle( @@ -3491,13 +3428,6 @@ class PartC { 'f6ed5c0085b69b0967290b0f1c184af8df4ddea2a781f61537910c0a772ca07c', 251232, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3a499f52b3169350a02bf8a93a4f51e42acbdfc5e0371800ce4388a57f3b708e', - 387212, - ), }; return googleFontsTextStyle( @@ -4038,13 +3968,6 @@ class PartC { '9640f777ba0f06c65e806ba625171ce9a62e225ddc2a0e669b24d10931ed4ff7', 64656, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6ba1dfdbbfd6a050eafb3d497158a7b2e941948d07a1cdad95766c437303f556', - 124756, - ), }; return googleFontsTextStyle( @@ -5744,13 +5667,6 @@ class PartC { 'dcf2a55f6136909f9238ab3b5548b685214502b8557cef821ed9fc10bcfcabfe', 27239376, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a475c1d966aee8e1156cb5901351f4ee632aaf30f48ab68563c0e8f401d3935e', - 48423528, - ), }; return googleFontsTextStyle( @@ -5943,20 +5859,6 @@ class PartC { '697583448593d2b5b07e0b4a81a75030bed04d8c82f4658eac041854e8f7cf0a', 19083208, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5c57d073eba09729141fe2bef3beb05768804883c190f30e7a76f2b658e97526', - 29975368, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '579ae92ec8253e15c6ee9dd21af96bbb611b10e9318ac3392e7a3777ca1fb0b8', - 32347636, - ), }; return googleFontsTextStyle( @@ -6149,20 +6051,6 @@ class PartC { '7ce15123c740f53c691f477282327223391ac2a1ae16e50784ef69d642f6fe00', 30306172, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '199723310419e675d074dc612be6ad45c9a665ab3fe43e11c3f2968f630f5aac', - 49168276, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'deb9a6dc539b8dcbc4d867f23811179d7d03c9be5df5305d14ae17afe8fd8f48', - 50783424, - ), }; return googleFontsTextStyle( @@ -6369,20 +6257,6 @@ class PartC { '549593fd02b205493db5015aa7f812d7d5cdfc6058b03e3323ce18163f38e779', 87808, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6ec35ac0300064c7033d306fa5188995113830463a280b773c1f4bcb5e149ab2', - 144968, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '8e120fff731d0672bc558f4c30106de2171da4448d5b162b17c600a51506b46a', - 161476, - ), }; return googleFontsTextStyle( @@ -6589,20 +6463,6 @@ class PartC { '9871638414effabf947bb7af55820313892826bcdf68cab4216716e349c86871', 61584, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd96686cd0ed5838e4ecc107a210fc1af947039927562457a94650c778347ae97', - 111096, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '815230cdc0b7451bb05b6e2c94fb67d6dc8e00f0cf0c7645ce209e91cd37856a', - 118564, - ), }; return googleFontsTextStyle( @@ -6988,13 +6848,6 @@ class PartC { '4b0ea4c44ca333da02b4ae38f47375d93604469f4040a9dfff8cdab315eee3bc', 46168, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c0781a0c85b38588de93b8e5cc35876caae610f07573fd4e4cc1f77126f7b2bb', - 76464, - ), }; return googleFontsTextStyle( @@ -7270,13 +7123,6 @@ class PartC { '2d527f31862eb41259e8927631b968e30dad29d78be1c1751ee0d9665d78f65b', 64988, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aaa994fd2454a22ea2e5bfd1beaa281ffa4fc1ecca99e6e6d844179f19c8872c', - 166296, - ), }; return googleFontsTextStyle( @@ -7754,13 +7600,6 @@ class PartC { '1d5e9b0471c85f9a0cb2757591b404371bff9dc3141879ff12bdaaf755313db0', 110148, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e1ccafc3204e62a2e71de4de45c9f7614d0785e266ce5ee6f864dfc873bea186', - 202776, - ), }; return googleFontsTextStyle( @@ -8381,13 +8220,6 @@ class PartC { '80fb1453498a28e035f4bce17dc70bde62bf8baf0b38c9cc666d9e8bdc335993', 42356, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3645276aa3658fd4a55fe9aa0da87d2f5d3f4a37d9e9b69198547ff2eaa4831a', - 88992, - ), }; return googleFontsTextStyle( @@ -8531,13 +8363,6 @@ class PartC { 'fd2608cf952bafc085b5f7967222ecd6f2c40329eb92055c74be088bc46da88c', 161796, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd56a8664e1ecdc44a3adf12c799a01b46a7845f01afc3e3fb8bc9b535ec284fb', - 730352, - ), }; return googleFontsTextStyle( @@ -9579,20 +9404,6 @@ class PartC { '8a190f44ceb1c58cdafe19c9ac572b0c172730cb81b614eb34ba4dbcd5f4d2d8', 175728, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b37d1711f7bd5c91ecc70be8ea5d6b1b4a47ec7687f449cf147e775aea9267d4', - 265076, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '91863ef16be2e710a2b23ba4ac4c5ad8238e95241fa5d0409806b29d5bf5100e', - 267684, - ), }; return googleFontsTextStyle( @@ -9743,20 +9554,6 @@ class PartC { 'c31f7c3a92a5770056a9e4af9e65eb231598a562b15e75a2223b93b9c9a0f00c', 293096, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6296aa2336482b139a66793e10e301ead1c468058ed44cacc7cf3f9c0acd46d2', - 455444, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '6eca5bcedcad9a50035d939664956b8d126da67bb565c96654f814736eb22d36', - 465460, - ), }; return googleFontsTextStyle( @@ -9907,20 +9704,6 @@ class PartC { 'eea83cd4e34a8fe2289aaba3a833e158cd8999be92b27160a9d5222fdb07113e', 285180, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b2f8c3bcb1397b8583db28c676f0bf48eb7514b36c1c01da48905251d7108308', - 428592, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '7075011f22a57a4b0ceffeb2f5d2547871d91311e9e05f1acdd612dcf9181902', - 451352, - ), }; return googleFontsTextStyle( @@ -11398,20 +11181,6 @@ class PartC { 'a24fca49957a40983470c8c9b5be67612f9c7c503612311e3a0b32b11e1a8d14', 100600, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8f7402ff09b7ae6fe8f32db93a966bedbc965eed42d7094d46dc4d5c5d6c4409', - 226396, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '43bde3422cb1ad41aa29659278c0eb833ea2eac0264325d98b0dbf9232e2a0b5', - 232928, - ), }; return googleFontsTextStyle( @@ -11844,20 +11613,6 @@ class PartC { '08d376f3a90faae08b3f4f94abf49e575b77a666618d31c10b368feebc1bf3da', 55340, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd7ee000d19a2be5eab8c7328ceb16be265a80b8084ff31e3d015fadefddabd66', - 82968, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0feb570d6c3603960e2a20912c879863f35db0e7b7b46dc29d7a239f81daeeb1', - 82916, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_d.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_d.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_d.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_d.dart index c0b1f0fe3486..920eaaece0ec 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_d.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_d.dart @@ -287,20 +287,6 @@ class PartD { '2cf10416200d5edaaa17b14fbfd62ada8db60386c6fab553847d9e9c7dd45564', 51124, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '044bc185ccaa7c84c3cc02c3358bd888d999c8427d0e4db14399cd857bd16a4d', - 212052, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '6c7378af50da4fecef7f134a7aed0609e57b1295225dff887dc3f42f04ec99ee', - 248628, - ), }; return googleFontsTextStyle( @@ -834,13 +820,6 @@ class PartD { '5a34e8870af44a503c21ab233077f9f516b1588cfe364192ba084b41e1d0ca3a', 76572, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '81be52e27fa3971af7442088567afc3d4c80d78f25f64590e7c9c8aef6796e00', - 124084, - ), }; return googleFontsTextStyle( @@ -928,13 +907,6 @@ class PartD { 'b9880f0941241e50b3549c74a52f980035098400920b80080dc166ea2bb4962d', 91612, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2b4d84b348d2c31dd07d2aa1cfba892795de9b22b6dbfa7cc1d4b1f7dc663dcf', - 129652, - ), }; return googleFontsTextStyle( @@ -1151,13 +1123,6 @@ class PartD { 'df4b4548dfd4c31204d3c0ded418e4ea38365c4ba9f18d2902434c7813775512', 47440, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd86480d201f6e704bbe3922b34ed3212b33bc52f7814f0449f7786372eb8c142', - 76556, - ), }; return googleFontsTextStyle( @@ -3027,13 +2992,6 @@ class PartD { '443c1ace7e1603f7103c757cae8af974a73ebca4cc9160ce04fd264bac4657fd', 64528, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f6ee79946277a855e0d8f6bf147544466cb907200b1a887dbdbd48c29f489f7e', - 100492, - ), }; return googleFontsTextStyle( @@ -3525,13 +3483,6 @@ class PartD { '5ef5e8ebac073b312ce0bf5e4ab6a6dfe2c48be43aaebe72b68b94bdeb13968e', 69148, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7554eb62cbca748ebe8b4aea05af8f8aa6dee183c78d1adfba620b30e6e75bb1', - 112776, - ), }; return googleFontsTextStyle( @@ -3762,13 +3713,6 @@ class PartD { 'e6007270519def1279aa98841012de8d7692f173c37608124ffc59a504457f6f', 140504, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f30bf76343d88a0504089a5b39d68ba6ba72608ff11b50f8fd3a4ac664e8084e', - 456360, - ), }; return googleFontsTextStyle( @@ -4051,13 +3995,6 @@ class PartD { '341902e788f04267b51b9b87a52fddc2f553ac2a007e79d875f30e97993e15a4', 87836, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd329b693da6e7e21b77c45408b81033e5c0bbbeca327499620eea133627abad5', - 208676, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_e.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_e.dart similarity index 95% rename from packages/google_fonts/lib/src/google_fonts_parts/part_e.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_e.dart index 03d1880203e7..7bfd8b9fd663 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_e.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_e.dart @@ -109,20 +109,6 @@ class PartE { 'b92573b981faaea36aef8a38ff086901f9964bcdec19c15d2b8d07f0523d011a', 377364, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a4065d20ae1f6527b1f12d284062aeeff58a141bb1bf092dd11adefa2c2772ec', - 746376, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'cc71a8e35211a3e87764caada5d6e32e79a2e788b9b4986a1857685efcf348b9', - 619916, - ), }; return googleFontsTextStyle( @@ -607,13 +593,6 @@ class PartE { '03b80d7d97d25ef3470d7917a79f5eee651efad87a2bb62189a64bf657a2c998', 253844, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3456c0279bcefe210da1fcc3d6a5e34499768f5b9b12386fbf593773a1dfb9b8', - 392156, - ), }; return googleFontsTextStyle( @@ -722,13 +701,6 @@ class PartE { '5a2bd757a5121902e431412a09d91b739823c6dff5229de2f6e12c7e411f6665', 37284, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1d1e6ebf480f89073f0d7a73635eefad7785cba28de4213a99f0474f575bd161', - 64048, - ), }; return googleFontsTextStyle( @@ -837,13 +809,6 @@ class PartE { '7baf839267e2911dca6cc99762eec334aa43dd967ab9ec569b2a62144820381d', 85260, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4d8361ddc85e72320c8d15eaa262ccd2a1e57277c125cfe68db03ceffe0b508b', - 136428, - ), }; return googleFontsTextStyle( @@ -952,13 +917,6 @@ class PartE { '9c76e79eb5417dc31a5a2b7518964272d839d969fa75237f98ad4105087046f5', 282700, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4ea51474e8b3801a58ca47e77491fadebc7f3800b8908ab5aa2a438f4128752a', - 465080, - ), }; return googleFontsTextStyle( @@ -1067,13 +1025,6 @@ class PartE { 'eb258821054ee40ab44702bfcfb8679eab02e676cfb2e7873224418474e78bbc', 189024, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7b3a2a8535df59964a221783c3662440c260088152194962f7bee328d51b3fae', - 300084, - ), }; return googleFontsTextStyle( @@ -1182,13 +1133,6 @@ class PartE { '3844a76874f92976e3e14f33c732c5b6ffa2d1e1de49701e4f7b14440d8eb35e', 218716, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f5e93a9eb62a37a308e389ad13ba342a14b178455ff7b0458366c6be5954f3bf', - 354824, - ), }; return googleFontsTextStyle( @@ -1297,13 +1241,6 @@ class PartE { 'cacb5f35c09da6cc935e575eca9927de7d28cf7fadead6db2b606d7ad8ef09b3', 191900, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aef6d2adc75609197af12e0941af3c14d8029c0cf801e3d60530e5aeded0608a', - 362332, - ), }; return googleFontsTextStyle( @@ -1412,13 +1349,6 @@ class PartE { 'fc8ced309338e5f1e93f14b87c79e8df790b54938fc5426d35db0511c523caac', 21384, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e05c83013ede8caa39191591eca45e873608903be1145e9678d6a815ec590a9f', - 35700, - ), }; return googleFontsTextStyle( @@ -1527,13 +1457,6 @@ class PartE { 'a92da6f194a39c42509b5d387663c47574110c5cc5ced95b6942d341a24f622a', 122964, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8d1b8f224ec6bbedac3b755950552998bfe5d037f222e487e16323504446e38f', - 225368, - ), }; return googleFontsTextStyle( @@ -1642,13 +1565,6 @@ class PartE { '117c1b9d0f7456c488a2e88859c8f30ab4f46f58bec45ffc6824389ad1183748', 21256, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '860b0e3b464d49c824478cf5c7ebaa005031d134087974da434e926efceac81e', - 35836, - ), }; return googleFontsTextStyle( @@ -1757,13 +1673,6 @@ class PartE { '58701e3cfbcddbfe3fd095bdbc094330f85c3d6a3a3c2e45f58776313e01ee04', 152772, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7d0fa50bb2a8238137e3ce210e6e401ddd682e41d465dc7ba284c5431e8981a5', - 272012, - ), }; return googleFontsTextStyle( @@ -1872,13 +1781,6 @@ class PartE { 'b9430c9a49aa49b3de3896d199edb664965a2e4799b57ba7a3f9d6ef5421f939', 19780, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '57c23bd7181465a88965b21864b2b80d5395bbae8debc0ec1e73d876cf51fd50', - 33004, - ), }; return googleFontsTextStyle( @@ -1987,13 +1889,6 @@ class PartE { 'e4c8fe02d5acc84423f86d57b38fa150bbeee20d3ec7ecc70bf6b9a39ce9fb96', 140708, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '11b3fcc858821f19a37639be826f9012b76d88764cf80cff86e141cfb4bec802', - 250840, - ), }; return googleFontsTextStyle( @@ -2102,13 +1997,6 @@ class PartE { 'f4ee286213a0896b2885e48225b4817417317f174e068fe88871eaa025c6116d', 20056, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '583b030e86bdd6227f6b665ee525327cfb2685e50b3e1a27db576837208d8511', - 33600, - ), }; return googleFontsTextStyle( @@ -2217,13 +2105,6 @@ class PartE { '5aef0ddc90a8a4680011870a1a1829d4ab6c2a567ae7fc94dd32787cfef29144', 20156, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7e73fa35fd9ec1bdb51406b672846dc4c36ceebc3f4da38e5528652accb38e0f', - 33784, - ), }; return googleFontsTextStyle( @@ -2332,13 +2213,6 @@ class PartE { '55f6dfd5dea0730c81da16c9274eeca11a9b277ba97dfa2da9dd9154564d7e3d', 184868, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '88060154b62720e6581c984a10de71aceb0e002c750c3af231e14ffa61c25802', - 293360, - ), }; return googleFontsTextStyle( @@ -2447,13 +2321,6 @@ class PartE { '74de5deb601627b67e21a712196d160bbe2b90673be671d6911b71c683b9da06', 190140, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a65fe60e0ba83fcc7246479cf9b2663891e3101493994e5729527e8a84aff951', - 288920, - ), }; return googleFontsTextStyle( @@ -2562,13 +2429,6 @@ class PartE { 'ef419b9db7a5b440c61b931a4d7f59b74dcd7855acaf787da9c85a6c6f1fd3ea', 83860, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5124ae380aecb72d98b7331c79c074c83069ae84168530161dcda21094b856f3', - 136576, - ), }; return googleFontsTextStyle( @@ -3161,13 +3021,6 @@ class PartE { 'e3484e50615e64bfa8a26d96bf16af8359b711fa6fdfb70671e3b358fc5f05f3', 80536, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c831a881a37d0a3a6eab12229b2a84fa65e9d08faffdd73d7a3cb51911b1f814', - 198400, - ), }; return googleFontsTextStyle( @@ -3311,13 +3164,6 @@ class PartE { 'b91e92af806ffc725c20298b7b2347d33269bb933281237dbc395130bd6faaac', 69700, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3eb43915dc0951e08896da6df648a96c6197b47cc8fc18d72e2e36eab01d93e5', - 165532, - ), }; return googleFontsTextStyle( @@ -3893,20 +3739,6 @@ class PartE { 'd1431b3af66d7dbc45d11f6e4e85da1d563a1bd20048d2ba9b2d29eacd3d3834', 70260, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aaa83600559f6297c91c9b3bf0b786f5b010f6feb71505d57f1f0927daee4ff9', - 142972, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd67e98e04bb4175bffc82c142e96ee9412277f9b452ab2de0c2b9195c78fb128', - 145588, - ), }; return googleFontsTextStyle( @@ -4085,20 +3917,6 @@ class PartE { 'd208ca202dc5a45178f65163133959d91d4d1acaab0ce488105947491d553260', 86912, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a7a3382d81a8375d3ca314bd015da17fe47d8b5ad8cdb7bc5d04642061589530', - 140168, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd2d746185b82f8db0ab7c9cf26c52658f96a44b0fa58c0656d531b37f0fe9b6e', - 142604, - ), }; return googleFontsTextStyle( @@ -4277,20 +4095,6 @@ class PartE { '73abbfe538fe3013fd8cf5a8dd4ef4df8e1003053d49c07a1641ed68d6c616e9', 54992, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '11d261815adf3c18e39fc775903f420821c9c8e21baad1694389bc282285127c', - 82892, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '226d303ad5f8c2fa794b16b8c946bbfec4720d91abd2cf01d2a7754f0a67a614', - 85560, - ), }; return googleFontsTextStyle( @@ -5019,20 +4823,6 @@ class PartE { '08b57b796c862ce9a4307083d9615912a73689e26b737ba2b3a114542b3e1f23', 59556, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e22893e46c492ecfed72cd193bf15c57db5f2982fd9cc1e0bbcd8bd109337b43', - 97224, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '877a9493db21718119cd45b91e945482605476ec5c10c49aa03f360a8f4f3cd7', - 99632, - ), }; return googleFontsTextStyle( @@ -5239,20 +5029,6 @@ class PartE { '520e404fcf154ca3da3bcf37d1de6df4cd76c0fa751419b1a0ee3f7d00e92327', 143820, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '104f65c50db13c91eff9c7f2ad11aee1817eed35c5edbd3d867105eb4012ec91', - 289748, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '864c238c8bf6c8b61063484228155568ac412f4b3154bfd060ae0a7fec5ab347', - 288684, - ), }; return googleFontsTextStyle( @@ -5389,20 +5165,6 @@ class PartE { '09cd3d513e540097e9e20ff0e8f45d5da4c1011cf24cb2ad57b3f33a85d82498', 24280, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e9b9bfbf09ccc4a77111b46d27809e373658c6b6a17e60e85f2c6723851c6844', - 37676, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4e2398fcfda004691608de8b8a40b96a92293a44efabec942d2a217546efd15c', - 38816, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_f.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_f.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_f.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_f.dart index 538e777d48aa..c4a76084ef01 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_f.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_f.dart @@ -346,20 +346,6 @@ class PartF { '890faf1e40c44d13ecf7309d1ca7bdca2d3e02416471c937a7b9366ae3d532b9', 58420, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5aa3228948f5775dbdc2fcf91c06dab9940277ba36cdf80c3b0abc231a2417e3', - 85684, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '277508c1f75534d6bb19c63dc7ee84080d59abb0ccb4f231fb5936544d31cece', - 89212, - ), }; return googleFontsTextStyle( @@ -1248,20 +1234,6 @@ class PartF { '264167647a195ff8a2300c2375b6f3eda19b697c69aab6eaa4cbbcd0ccb6a7b7', 70964, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b1e86a394cee815a02b6415b4cf52e2319cbcb371cda812861f43eeb8e7e3aa4', - 112796, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '584509267bf5cf028687f22a889797348141d229ebe40f5e71856e29300863be', - 114632, - ), }; return googleFontsTextStyle( @@ -1875,20 +1847,6 @@ class PartF { '140b79a0c3ebb5a27f05e7299ed7d4c270b170a2b4246a9bb463249838885e23', 36292, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ae613a16270d324dceac8064715b0091c462c23fb16648f761ccf27ecd5c2ffd', - 57408, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'fb33f8bebb2ffd05f126824acdad88c312cb4bf76ed2aa4fe4ab76b230409a17', - 57088, - ), }; return googleFontsTextStyle( @@ -2112,20 +2070,6 @@ class PartF { 'd134289cca826c842949208b7943ab32da90ca97ad857f0e784981a4792d11e8', 85612, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fa1fa94552474295c93672c3635b6f1a9170f2a1fc02443c7518373ab91d98b4', - 138468, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4667acb72af8998f2b42d9906aba482a30e050785407113dafbb4b6d1a5ffb6b', - 146388, - ), }; return googleFontsTextStyle( @@ -2241,13 +2185,6 @@ class PartF { '0b7baec2e68e2aaaa6470af9abb4ec839f0578469088e03a9eff94628e9810bc', 179360, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '48ad6e500eee5a1f473a02efaca615d57c62565a03c50ee9a21865ffb0e517c2', - 251992, - ), }; return googleFontsTextStyle( @@ -3815,13 +3752,6 @@ class PartF { '2df1b0de73d625a7eb6eaff1796046daf92a672e9b0fb5903bbda3e21446c77b', 314024, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '59585395a20fddb7143087c386fe6b6469332a46d425afa383222c688a1fa760', - 510372, - ), }; return googleFontsTextStyle( @@ -4400,13 +4330,6 @@ class PartF { 'e0b133e09ae177565dabef6186707da3156ad6d093c7dc0cde2ac33cf9b181c7', 66908, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ce09f888ff53139f1678b2a54a18257524b58658ddc5b5ed772fe5e5182e314e', - 170052, - ), }; return googleFontsTextStyle( @@ -4613,20 +4536,6 @@ class PartF { 'fec8497b76c8ef3dec57bbb38d8098e10d41ca4f4f6340a5e54544fc01ef9cd3', 85036, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5a903089af0d0f4d0ca2891431af22a49d8bcdc6196e5ab1b6779ff449e638ce', - 357128, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2ac7257426d815b2bcf632deaf9d1319ecc650dcc1a8fa80a6c9d55ebf30f134', - 406732, - ), }; return googleFontsTextStyle( @@ -4916,13 +4825,6 @@ class PartF { 'fb87f9cd22fc2af57c25c381f17d470f7d7ab40e19f51975b6c5b069051718d3', 48564, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e59258f148dcaeb9e1fded90ef6ea064c8827ce0bddeeb7ae7dcc579e9c7c941', - 156928, - ), }; return googleFontsTextStyle( @@ -5661,13 +5563,6 @@ class PartF { 'aa226371eeebb9f6897c021be731c116bd9d897a65b07139b8c78e58adb74447', 32780, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd4de1c2b3b64b838334694de95c57685304c3049c2440601ca5ba373b73031f3', - 51816, - ), }; return googleFontsTextStyle( @@ -5832,20 +5727,6 @@ class PartF { 'a15c87af69e2b9d7074e155d5b183f162946a49759d166dfe850c381dcb2a743', 33904, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fe717f3b154de3c04078939c9def7c59b5ed0a7d9852ba3ae043cfec8dc7686a', - 51584, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'cad06ece8de1c33503a29825815ea945284e99de780f1f66c8e4e585ea5d9243', - 53280, - ), }; return googleFontsTextStyle( @@ -5975,13 +5856,6 @@ class PartF { 'e4f23a48cf99446c3784f416e1b9ca2abe2a3c3f694c52b78b3f99c4f3cb9dc1', 84532, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a5f097aac080af482ef9b9fa17ac2fb4cb641dc2d044a6e98891032611559baa', - 155640, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_g.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_g.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_g.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_g.dart index 5f3b2d7fb358..a5fd65034f01 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_g.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_g.dart @@ -363,13 +363,6 @@ class PartG { 'c9dc1d2fbf744fdd87a41816c44732d23cfa8fb299f244e9f95b62c0b37b65d2', 100272, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e21c290def03f1425cf34f8c5efc728d56ff6b90844aab242fa4bcddc7f4a4d4', - 157256, - ), }; return googleFontsTextStyle( @@ -1286,20 +1279,6 @@ class PartG { 'abb88b63946ff5ae560b420650a40286156d9614bab87c5a940ff1d4422adf77', 38596, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '60958845e881ce6b3a33ece17c62d8491a9e0c0833f77a1aab83001458898d25', - 122996, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'bc51c7ccc7da12ff2b27a541a1d15fa0baa2f9a873e101db5a9c640b5c3ee93f', - 129176, - ), }; return googleFontsTextStyle( @@ -1631,13 +1610,6 @@ class PartG { 'e42ce1df1dd6dd6937e77e765897e4f89b125e175fa1d0a0c9682d22b1308569', 66540, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f3f356dfdaf7e75eace9837f9428194ec4f29d49ddf19718c32cf4b9472e871e', - 131412, - ), }; return googleFontsTextStyle( @@ -1781,13 +1753,6 @@ class PartG { 'c0a57e3d2446b0e39f96eb81795559e073ad93a89d9d6e9282aed9fc4364898f', 69320, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6ef20dc9e717ede2c7a87b464aca3222b558c6ed0e11df535694f30ac868b05a', - 124968, - ), }; return googleFontsTextStyle( @@ -1924,20 +1889,6 @@ class PartG { '5de86576900f6ba4e8446dbab31ce7479533b935dde45c2edafba6c4ac076c06', 102704, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1e79dc955b2cd9053960ec76d02220f9e0107dec56077da1a3afd36117f9460d', - 160408, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0ccd78b88b663207ef39125e1d78965a623cb3d1b89bf4d157a81ccb9e6db70e', - 167500, - ), }; return googleFontsTextStyle( @@ -2067,13 +2018,6 @@ class PartG { '83366055c34eb60a957c100a2310722578e48f2a693c51d238b3f92a4c1ad9a1', 144544, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '31a71cc3692f5a114c460068d5f75cb37c905de03d27d448dc233be148d6ad94', - 241372, - ), }; return googleFontsTextStyle( @@ -2280,20 +2224,6 @@ class PartG { 'eda0ca42e89c6ca8dd6837e41309227564247533c6dd8ee3800b0d5131f52a85', 80636, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '187005dd5e80a053a6f78a98bacfdaa7ee5d47a29acbcfc39b41bad9338cf061', - 119164, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '89aaa75fcf239fd2dae86cfe87056197eb52964c7deefdff6fbceec0890a27fb', - 127960, - ), }; return googleFontsTextStyle( @@ -2747,13 +2677,6 @@ class PartG { '722ad0d4494bd013e07b0d176e26373214990011ab9292b549cc06e2bbf12e94', 130928, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b25083f494621a3b656d3e6a27533a724120db449f4d0ef598d5da34241c1c97', - 341240, - ), }; return googleFontsTextStyle( @@ -2960,20 +2883,6 @@ class PartG { '9a43dcd037acf4e7b5c23f52ba59c42fb40a27e96816d180930905c81b8f04b7', 92772, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1fc9ad660ac33c98c3ab3d057731f4927ad9fdb1ca554a9f9b9352ac1bf20f37', - 298020, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ff99de7fb83743494da213cf2881f1ef5b5039948467c7682af86f6d4eb8af37', - 308452, - ), }; return googleFontsTextStyle( @@ -4304,20 +4213,6 @@ class PartG { 'b050ecdaaccf7f5648c46dc0df7c65e694e6834337a8c613c5b88a60152d9874', 54516, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '58214ddc89275fb003ba4a85f96b3369555c1d5cb2c8c36e1d0e8691aade31e0', - 86476, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '44cb71348d03e98a75e22af47de9686d44647a7e24fce0bf2ebc65d29755a2e7', - 88736, - ), }; return googleFontsTextStyle( @@ -4461,13 +4356,6 @@ class PartG { '7b99c285ebfb9c1e875275033ce461bb7318420ba351b7c748132917de2f239a', 86732, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8270bdd34def8383ea912bbad8e69740b1a07cf1fa757ce2adbaad819f3a0366', - 314868, - ), }; return googleFontsTextStyle( @@ -4858,13 +4746,6 @@ class PartG { '488eb5aa0bdfbb9e96763eba799df175b5f3bfe7a5e256984ab96d66c38d24a6', 64140, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cf75b0b5688207bf69d91c276667bc514d5d3af7865c55d04511639d80217e42', - 171724, - ), }; return googleFontsTextStyle( @@ -5029,20 +4910,6 @@ class PartG { '398be267746f5f90414a66c6fd73af6d4e4b4eb050fe1bd4da8fb3fda508b8bc', 56588, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ae6152740cb2182338f942555f0bf2521010d68898a4dae3a4a461ddd63825a2', - 125428, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '9f199e74f113a08846a51a785aa610d3f656901a9d3a1beb665da02f54a77b2d', - 132164, - ), }; return googleFontsTextStyle( @@ -6102,20 +5969,6 @@ class PartG { '57c064c2bf5600af995d5c102fb2ad6570c397fedd221368a00ee5955c59b677', 83784, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cc29b5ed28ec2079d525e524faa49fdad0d4d55f7c035aea02652880e104034d', - 144152, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '41f6db1ffbe12bdc40b368d1d169f70f6ba62e420a4284dcbd80a0d089b27e50', - 145812, - ), }; return googleFontsTextStyle( @@ -6813,13 +6666,6 @@ class PartG { 'ef8fc6f64fa4062a2487b3bd973bf6ad90679499a108a2b885c5f1bb4d1e298c', 70664, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '608e8ceeadcf22786640c4baa0a858179a07014392a8592254ea9f71cf0e06b7', - 147356, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_h.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_h.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_h.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_h.dart index 2d200761b347..3b9ba52b85fe 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_h.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_h.dart @@ -276,13 +276,6 @@ class PartH { '4d061b463a2cc3d029117d5ece0ea5c2de7bf9a3c68f973147640b2eb7285ee9', 1478360, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '44cfdb1393e702243cd406cc1148bc3a47b15d4c9e4d169cf475203ebcbe371f', - 3448292, - ), }; return googleFontsTextStyle( @@ -802,13 +795,6 @@ class PartH { '28ee37bffa17a4f0376326ab4b2c1bc2ac2215e8b2fd304b1628c83d97bfce79', 183660, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b4427e82d08173c02460ee1e47c3ddb3d1b6b803de51aac6639cd6bb990b441e', - 244368, - ), }; return googleFontsTextStyle( @@ -1102,20 +1088,6 @@ class PartH { 'e0be81db4d4f420f75a33b22ac1b8ccbcef18f88fbd71887978e7ae4b45232fa', 61228, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e5249b25bf1c09918b78f04cc51421ad8f8bae3547d7d7dc7834d511576e133c', - 115412, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'beb48916d4601798d8a3f85fd95504ca394f97a65be7b5c658cfc79235f3d6dd', - 124064, - ), }; return googleFontsTextStyle( @@ -1259,13 +1231,6 @@ class PartH { 'de36e117b307c49e79c550cf81a3e25948da6843857824ec796d547d26df8e7d', 57804, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd1912d947325ba67890547054295164b453483b58916884fc09899e7394fe6f2', - 125232, - ), }; return googleFontsTextStyle( @@ -1722,13 +1687,6 @@ class PartH { 'bc2bd65748b4b36ccac6e26da6e9f9b3a8effcf5b05f845c22f6d1b8b47e81f4', 78620, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f847bf4a14f47a954f6985639aa862d058117b2b770f5b9e14e4ea4cc9e0679c', - 121864, - ), }; return googleFontsTextStyle( @@ -1872,13 +1830,6 @@ class PartH { 'a56e70d58c1c440804c371b66918b2effb16114004e81294c69c7f4d81d48b02', 44604, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3f3df065b09477ec4c11c1d13284c6be62ee1d403f5a7392c52cee6fd840f75e', - 93080, - ), }; return googleFontsTextStyle( @@ -2109,13 +2060,6 @@ class PartH { '7665627760e90f62b51971f1c608b3fa84f92ed3d2848da087fcfb812db89cb0', 116760, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '82c84b16d36ecae49916848d06eeab954be9b2b6f8290311a3b9960e7e68a02c', - 320184, - ), }; return googleFontsTextStyle( @@ -3415,13 +3359,6 @@ class PartH { 'd7870386f44708c6870cd06494db0cae2c656b18348aaeddfc7737eac1bbc815', 341532, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '66da49f7af763cdaec18a71be19913dd4b69d255f271a93e2094cd6f122a51bc', - 3115360, - ), }; return googleFontsTextStyle( @@ -3586,20 +3523,6 @@ class PartH { '3fc180de6e3a950a60dbb750778a98e63415fa6dde24949ac4055cc7470aa588', 56284, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '47e4cbbf7d207a81b54c4289f56734a419f1d1014eeeff0814f125f97d38ed1e', - 76008, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'f50197cd3cf5c70a2d287a56d792b967ce351f96276f9ba097a578a6f5d5e772', - 77752, - ), }; return googleFontsTextStyle( @@ -3879,20 +3802,6 @@ class PartH { '9e8315d259ee7ce9c2205ff59359525d49f831576bb88a14c879b0a3dbfc2f05', 79484, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '55c2ddc1985255a7eab99d43de861af47cda637ee0cecfbb968a789ac0dc6c3a', - 296664, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0e36f607d1168013b0d61be77a15d67e26d7215037b0716621844d256c4c9430', - 307772, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_i.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_i.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_i.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_i.dart index 7880ed7cafe1..c26331424302 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_i.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_i.dart @@ -315,20 +315,6 @@ class PartI { 'e0386b71c72ad4e0eb8d117e19ef5b45857b367d26ba5ccd22c064fddc08f249', 198152, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4e1ed2792a1ad23e7d882b25232385397e8452e49d6e7e0b2918af866c8fa630', - 486372, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'afe90dba9b98194ee0ebebe94e85266fcdbc1d82a58af109db1fc2843be385cd', - 548048, - ), }; return googleFontsTextStyle( @@ -2542,20 +2528,6 @@ class PartI { '0de66fa2cb647376c116aed5783a20f77a31bc1d84a1f5122e485feb381066b0', 59396, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4684baf422491c7925b6dedecf122621834284dbe49375f7c711c5565eed0e76', - 86100, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'c2bfbd01fd6584ad806485ebf7919b2220fb35cf69c6f858fd82d27a2f6e6596', - 92660, - ), }; return googleFontsTextStyle( @@ -2873,13 +2845,6 @@ class PartI { '96460e232ce98bf8e8e575daf7bbf36d55db2d929c1e425946236311784b3a3d', 65692, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c90790eef90ec66d0591949bb7fac05894d65c2a2f8536d56ace51b4d6c6b955', - 164628, - ), }; return googleFontsTextStyle( @@ -3204,20 +3169,6 @@ class PartI { 'f5e98fe1afac684391043f9837a632298b4f933393053b4602780876a469c197', 59552, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd4a4d95288c5ee6a47d805df7230be6afa2c9d694ee4752ce26d2cb42c4243de', - 107304, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'e658ec36e7738d316b2e5e25aec0a1a4f9f3aba8c8ae872bbe48bc54724b15a3', - 109492, - ), }; return googleFontsTextStyle( @@ -3354,13 +3305,6 @@ class PartI { '0ff21c66ad0c1ccb7fd0c49a023308b2c65be37f745757a19becc2d1dfcf46dd', 73120, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee8318b46ab30e6706b1e2ebc866ecbb1cde0490a5f86b6d83036f0005db6360', - 312428, - ), }; return googleFontsTextStyle( @@ -4312,20 +4256,6 @@ class PartI { 'deb338669d6ff1390f08393bac2b49de889d0275709134d744498616f1212e36', 50028, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '463e73a2a444c90c4328245629e28d0a5480bc2a059d45ce5951da2b5bab152c', - 141112, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '57f217f020378f5c72c308228ea521612d9094d5f843414673abe2324a20084b', - 147496, - ), }; return googleFontsTextStyle( @@ -4570,20 +4500,6 @@ class PartI { 'e833db7126a955b42c7cb15298c88b41efd73ebbe8b9a668acdc524b59caebcc', 60284, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '028cf7ff8466ad657d285bbb3ec6739da73589d13f29757570d98a32d7b3eb23', - 94364, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '03b1093541180acb2691de4a948d1b9f4fe0756545a4c5222f726bd4bce08886', - 98912, - ), }; return googleFontsTextStyle( @@ -4790,20 +4706,6 @@ class PartI { 'ebf63e7eba6963dbe2020d1eb047760d6af1388cfda2bb14a3f2f8cc72427478', 331020, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6fde7a0c6454e99e1444d50851ddaa210d0b90cecb448dfc84d9b2e3379274b0', - 846496, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'cb49c2bf2d1b4e1f05c6559f0d6ea83e8713539f576d3514395d49270ab55458', - 876348, - ), }; return googleFontsTextStyle( @@ -5010,20 +4912,6 @@ class PartI { '362d4f14897417aea353eb43be7bd3df30a27377407e1644ba32a4fec7651a8a', 310204, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '41cdc624cb7d59f5ae52356186c88ad58b8bb3701d91bc03f796cddf46210f8c', - 573364, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '79001d2ef8056b2e396efbc7455b76c8c45d2ce9fc9ca006567af5fb36da121a', - 585512, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_j.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_j.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_j.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_j.dart index 2c4fd5f0849a..5fd34e9b9048 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_j.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_j.dart @@ -1024,13 +1024,6 @@ class PartJ { '31d1e6d701b0ce299531d7aba0d3adc76dfb441651aa215b79f18bcb2cf49b98', 96564, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c1578e36c9a7bd2b1ed4b46aa258b2ab38a6abe444588c4f54ad1b91644d30eb', - 143668, - ), }; return googleFontsTextStyle( @@ -1919,20 +1912,6 @@ class PartJ { '013382b52ceb65565ac0ecf7dbaaf9369d29f4d4d3a8763439e3eb77c2b1009b', 114984, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd470913c8bc3e849eb2c356602387042b42f2f0a1d1ae3b953c4e6ba1b0cb655', - 186696, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '6b14b024eb5e6c14c4c966de17ba969833c0373e474e77dc7e8c6de33f673597', - 190828, - ), }; return googleFontsTextStyle( @@ -2633,20 +2612,6 @@ class PartJ { 'e46b28542f37acb2f4b4ace85a4ee12fb4ec4956712b83d9e3148be45c6ac06b', 61988, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8103fdca754b43488eb0500a3ad9959a6bb3bc98c482a22c12ce42d00a96d7e1', - 116004, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'bd01559efe684da06a26cac7fc524cc6784e47b313b93dc6fe21c512fd54fa45', - 124680, - ), }; return googleFontsTextStyle( @@ -2825,20 +2790,6 @@ class PartJ { '164520e00b5c2e7de195e967d5ce07580e62e23a1f3947caaf155e6dc54f6113', 29896, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0716c58ecc19972d460f070abfa2b7d6060707b5f20db7824e9f1a5d7d1f7169', - 47992, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4e9e0abac0bb9ff2b6a3675dfbcb8101c5bb151946fa0856485afa9bf03d35fe', - 50496, - ), }; return googleFontsTextStyle( @@ -3045,20 +2996,6 @@ class PartJ { 'fea3cd75073e909b0b100c8a49bd0ac9fd9519dea0a74c1fa21cfba9486551f2', 62620, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '402e28de6f1e6cf72709a0ac7a2a0bb3ec0b4a48f72721d8974d4048ee42f309', - 130284, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '52380d0f85f08fc1b1ac6a62c2616ef2bbca902a96d7551d4436e91bce89b62e', - 138348, - ), }; return googleFontsTextStyle( @@ -3710,13 +3647,6 @@ class PartJ { '07660df64e37877c06fadd82772bf0b384756862df4cb8803f650ffb0ccc5d9e', 150808, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '23895af7eb8694e1a430139540e76503e3f5825f60eb046f2ce15b5d855128f4', - 255688, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_k.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_k.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_k.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_k.dart index af8e60775f6b..c09179beae34 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_k.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_k.dart @@ -238,13 +238,6 @@ class PartK { '1748f1a6c555343d70382c4b80422351f382b168b4f9795ace4e021d4a3a54b5', 584036, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'be3d086d90ffcdbe946da711ff8a49b34ad883035dc15533b26324b42e354b4c', - 2177560, - ), }; return googleFontsTextStyle( @@ -980,13 +973,6 @@ class PartK { '937e204d27398a2edbabf70e57e33d4b750b5975110df212e5172c0da683c54a', 42804, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e980784476f1c97f33fecf68608cb27a2f8ead151d80d784cf490e5ce68ad9c4', - 114180, - ), }; return googleFontsTextStyle( @@ -1116,13 +1102,6 @@ class PartK { 'ace1e5f0536b42288756812e8d30a3779f67dd047be1dceb25b360dd22df0293', 111360, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0449e8d49c12ca5a04207cf4197a193c2b0d6ee4aed17a702f0e951315c49cad', - 279264, - ), }; return googleFontsTextStyle( @@ -1231,13 +1210,6 @@ class PartK { 'd24a03372e63cf2c0fcad396c29ea8ee0d612e10404933687f14567a7c28949a', 48180, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9843518777cc07bc5d12faa306d7d5152b2c9985048253048d29e1b150242c3c', - 81320, - ), }; return googleFontsTextStyle( @@ -1730,20 +1702,6 @@ class PartK { '00c12d38fa830c1b2335f3605d79dae8848c03d5d2b5541bec2a98bee54cc523', 100152, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ed14dbdb3ceaa7d20f0ea80827e608aa33cb1fac7ab98f762263eb5e00269838', - 195896, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ac5ea008a53e606f86bb350ec160e76fcb5fcfac45b8f405c01221e7984af3f0', - 214844, - ), }; return googleFontsTextStyle( @@ -1838,13 +1796,6 @@ class PartK { '329729cba1ff556fe02d68f59076b10ffdea97aa91b1f1bacfc937f0b033fb2c', 120484, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '15a6e5efb1061b9f5856ad4f25a2b946eaee67533e0aa8898553d793d7f719e6', - 184904, - ), }; return googleFontsTextStyle( @@ -2124,20 +2075,6 @@ class PartK { '80638a8486e2bfb172cc2a18b4efb6ba8dc80b2b83171b08238b1e9625a5d528', 42772, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f3ce5dec39d97ebb7ca087264ebf8966edf63e8c31557f62fbeecd7d24448f25', - 86428, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '627a9543b8f47165b27feb36207f368f902e4ec0fe4d611194e77f1587005c2e', - 87508, - ), }; return googleFontsTextStyle( @@ -4541,13 +4478,6 @@ class PartK { '917df0a9dfdb2f0c6a28a7770c5b92ad29fe443d40ef4d862cb62305c6060afd', 43444, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cd8fefeaf5b5d28ed134157df7a7a54b5bd3849a0bde43d8494c98de7b45d83c', - 59228, - ), }; return googleFontsTextStyle( @@ -5387,13 +5317,6 @@ class PartK { '22bf2d1cd15e172fb59b99813da08c14e9e9bd8d9767a5ed5964c476888aac22', 45400, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7acdf799fd4b7b297a5a9c6970fff613268c8ad9d7b32343da24cbdc85c256fe', - 73892, - ), }; return googleFontsTextStyle( @@ -5896,20 +5819,6 @@ class PartK { '8813d8ec458115678a9a6473bbfde3347664f6a252f22f428135ef4952bb4188', 163748, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e5462f1f6759aaf8770a38a03e5e630d5356cb26d3244bfd8a783c11610305dc', - 254712, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '508f4167dbc04a14e67472eb2827d6faceaee439046930d6ad32e7a692cfa4de', - 259004, - ), }; return googleFontsTextStyle( @@ -6377,13 +6286,6 @@ class PartK { '19442d2f67498e9048348bf8bb643ef689b45301ec04b0b2b644f5ee9bb362a6', 44340, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9cb13d72f3ba295d19fc917fc567655d5693f90f00713a40e997f33e40840923', - 117796, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_l.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_l.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_l.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_l.dart index c7a48840d685..ebb6668a083b 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_l.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_l.dart @@ -541,20 +541,6 @@ class PartL { '8f6ed77a7b4b63b60c72a59b4d43e79c995b244d6022a05c5c500a03d32f493b', 77740, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c302cf324a7a8653512a12ed03f0576ba758b2b86c03cf44464b7b244d1732b5', - 168004, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ebe22eba779eea70b9d0cca4f4547e29f1b4dd56c8862b0c22326cef51a940f1', - 164496, - ), }; return googleFontsTextStyle( @@ -1558,13 +1544,6 @@ class PartL { '1c7c56c2f5b21f92220c04e07ebdc879b86ad18a4f2ecc632302c75687579405', 37340, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ac5e5b163d652c1fb577f97f996eb2d4c20809f1e012d9bd734a3fa4f9ac9eef', - 61236, - ), }; return googleFontsTextStyle( @@ -1795,13 +1774,6 @@ class PartL { 'f8c562b3a62d436f7861c0cea1842f35c72c6cfeda39776c67db5162c09907eb', 53096, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cb4bd58139b9a9b275324a65152426fb827e74232988f79104de8fc16a24642c', - 88736, - ), }; return googleFontsTextStyle( @@ -2279,13 +2251,6 @@ class PartL { 'a2c7ab9c2b021877e75ce5883e6384cb8b17f512cf71a53ef8f77de3289bb40c', 89504, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a1be39d1e747fd7a607e3eb5c07265c52d4e261269809a89bfa49ae582453ea9', - 183596, - ), }; return googleFontsTextStyle( @@ -2429,13 +2394,6 @@ class PartL { '6c3c72060a805613a735fdb9523152f880e1cca7577bacfe751cfa7d5ece2053', 70828, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '77aeca65f89f2b916c30111da8a652ca5f11c0999a6567f7a16672e468362060', - 162512, - ), }; return googleFontsTextStyle( @@ -2579,13 +2537,6 @@ class PartL { '8a019b90a0d1c1cd959e293283aab7eadf58062648454cb76cf71483279d0d39', 70864, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9b6c050c3d01f3b6d60c83e5ec716c38b6d6450773138ef958afbc23e690532e', - 162612, - ), }; return googleFontsTextStyle( @@ -2729,13 +2680,6 @@ class PartL { 'b6895ef488468ec459803335b36fbe98322eaf9ff35935132c9de28915044e2d', 71424, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c3b083732705eb6e438127d4e3a078030530dc9bedbcb299ed3cea51b12c44ac', - 176032, - ), }; return googleFontsTextStyle( @@ -2879,13 +2823,6 @@ class PartL { 'cf6d733d9dd64337a88115cd5b2ba8d93a2357116b96cbb8799341740b047d4b', 71644, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '394ff12eb3a8e31e94ed4de107dfeb29a2c0289fb0cb9c2d7b6e10c3a42082a5', - 178100, - ), }; return googleFontsTextStyle( @@ -3029,13 +2966,6 @@ class PartL { '5772403e7081e6eb9ba26b089abb648fd3706db9095ae9f08ddd69a2785fa6bf', 71700, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '312b152be4400f0ef182c3fb217916a6351905d7037a580c3146c3a668d108b5', - 178072, - ), }; return googleFontsTextStyle( @@ -3179,13 +3109,6 @@ class PartL { '6a1ae08de0f2de9f48a692ae59996cd7a692ca1177a4ca8b7a08d9e95030f819', 71660, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6858bc5a31d537f40ac9e2c889f21fd51364c5995284f37c41888a6b7a1f7172', - 178168, - ), }; return googleFontsTextStyle( @@ -3329,13 +3252,6 @@ class PartL { '5a0bb2e1819d38140ceb0ee3f4689e3ada93e269ed180c1023c3f1474fb13dbc', 71628, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4b100e6e3339604027e7fd0d2dd0500a398863e7f29496f5c936fd9a6b1195e7', - 178476, - ), }; return googleFontsTextStyle( @@ -3479,13 +3395,6 @@ class PartL { 'b83c29e663b7d8dbc8df692213fef9606156074dd8209242fe5145c0c4f6f980', 71712, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5a88fa24f310074bf4f315a485a7974ecbc866f69637a2a37e0a4afbf447e9cc', - 178588, - ), }; return googleFontsTextStyle( @@ -4921,20 +4830,6 @@ class PartL { '49f1566ea90d1ad0165b62cf8d161a6bb438d910d1994701a6aa933c5e21b3ae', 72492, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '59ab64efe9a7b3a77c0432ce8419af8c35f938906f54ab35eb78280bfe234e44', - 112048, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'fca4367dae1e4ccfc6f0c5a36cefd425d7a13174318a0f2b38f528379da07053', - 110356, - ), }; return googleFontsTextStyle( @@ -5329,20 +5224,6 @@ class PartL { 'ed5cbf2a7265450ffce2469f2f1b41affde0c29739071117d6d9c40c78fbdcb8', 122276, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4fe908953b16798ea5c8e8883c0682b63608beb71090507b669beac85a3b2c79', - 185040, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '12532ee3dadbbf9c19c0f99ec2e8659e013fcda38faa23dd098645fdda753fae', - 203512, - ), }; return googleFontsTextStyle( @@ -6029,13 +5910,6 @@ class PartL { 'f715ed60542b0594710d11895495f48585169a53464a3dbe14652ade82138251', 57332, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4b20da8504fcf9de17e60873c6145a876debfebc21557169e8c1fa516b0d25e0', - 133216, - ), }; return googleFontsTextStyle( @@ -6507,20 +6381,6 @@ class PartL { 'a2b6d18b53ee3e9e80042fec0c1b773e6eb9c877370c46fbbacd4cbedde86f4e', 169368, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6b7e4157027cd32ad7b3e72898956113a75a5f0ae1b8e24781297e6f85c846da', - 632144, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '795660916a0c7b3d42d67043166bfe3b4f892e2e67844ea5a008942712a6639f', - 624068, - ), }; return googleFontsTextStyle( @@ -7587,20 +7447,6 @@ class PartL { '63f2549223fdb2319965cd17935c78aefcb609041770cf87d83e4914a4b2ca32', 138328, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b59d18d00c32a7226f1d9adaf975e71e15f98aa30b52af21a4d3843a903d0889', - 209232, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0edb295f561c3d76bcff0b110f6267242d0d325b29a55df9a7f8dd402c152a1d', - 217192, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_m.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_m.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_m.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_m.dart index 30b056f949a5..e02f58cd8fba 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_m.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_m.dart @@ -102,13 +102,6 @@ class PartM { '4aba90cebcf14cc6d0b136598d394b1e1744abe7945ada6a90ad4d8ee2bec3ac', 1723912, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'adb952cf3069ee374223d9cbb5ae30bce528d2fdee2b0dd5eea0ff5dea4ffa0c', - 3996932, - ), }; return googleFontsTextStyle( @@ -238,13 +231,6 @@ class PartM { 'c462824bec640c63c213efbc6982cbf0e655f8079999b2068e43c2669bc2dc73', 1699336, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f91003419a8aea98fadadd15c59775381ef6af4b10951c0f088466f04e5f251b', - 3794780, - ), }; return googleFontsTextStyle( @@ -517,13 +503,6 @@ class PartM { '0480fa5dca84b80ceb01d41e05f414c36980818b4f456d423c959d259259c7a2', 1726200, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3ca065515839010563397d89e739eb9a4f9fd35677a1ead23a8a64fd7cd6c3f1', - 4002652, - ), }; return googleFontsTextStyle( @@ -653,13 +632,6 @@ class PartM { '3a8ecd18d89b1c3c47bd4b4f0aaa24d2166c833f833c7f6ae887e22597bba5a5', 47088, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ed057aeeb628ee403cce2bbec6f0004a35683f4fc940567461f67216b959571c', - 127828, - ), }; return googleFontsTextStyle( @@ -1186,13 +1158,6 @@ class PartM { 'd3fe92843812b33b3c584b9d72370c6d3f55308ecf89e848df02e0c775266b1b', 96104, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1d17fa3ea572878df076e220a5eda07416ff75c4c2e2bc2f1817b3197585e600', - 178904, - ), }; return googleFontsTextStyle( @@ -2412,13 +2377,6 @@ class PartM { '574157e96dcb3b1dd593f4fd26d62a752b395f6ab94984d1a23ed7570e5391ee', 95664, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee625f9183a533dd139cda237b97616022ce9eda80aa4b0a665286b679c82d88', - 165584, - ), }; return googleFontsTextStyle( @@ -2670,20 +2628,6 @@ class PartM { '44b16f76f97f5d1ba32290de2a3074fd7442642553c16146f9ee1862073e4981', 81948, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '24e94fff790266e9feb76016723925ea27f21ba78c20d22251f8744f49687633', - 178556, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '72c65b4e3f89abfb46d2a57ede001f90767eb18b93f1940e2ecf6ba880ba5138', - 195240, - ), }; return googleFontsTextStyle( @@ -3234,13 +3178,6 @@ class PartM { '3124001aa95bc575dd6fdf18dae55f5badd494f468d5bba9460e055889e8d474', 87564, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '71fe3f3df0296ddce28d34703e4bfbd73ff0ff3618d1f00b23468650406aa129', - 139500, - ), }; return googleFontsTextStyle( @@ -3349,13 +3286,6 @@ class PartM { 'c5c3dadeee600102ebcf91cb5eda026618872cf4a5f98637325888323d0f7043', 181896, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6fcab7b75061cceca0bd745f9304acba9e9160f5d4be9be20c8012a8fde52d61', - 293764, - ), }; return googleFontsTextStyle( @@ -3924,13 +3854,6 @@ class PartM { '30d32642db7b553fc304a03f80d50f7278ae3c5b2f936d21c92e6d7c36271008', 46188, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2a2e50a759809993efd064f4a2e6c5dfe7ae05238af756e9023795ae92346d56', - 143556, - ), }; return googleFontsTextStyle( @@ -4168,13 +4091,6 @@ class PartM { '7dc41adb25b0c7b35bc1f3e8f440c7e5eec245ddd798be3cb43892fabc89fb24', 396956, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4401b9cc69133f3b68446d8696036f6a01877f3e5a28e1254e2c9649e6940c70', - 676992, - ), }; return googleFontsTextStyle( @@ -4565,13 +4481,6 @@ class PartM { '1d151ceac50b3f33fd2d95a8f87e6d43556146489bb282b988b908ad7def7b08', 55732, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5cdf0a3340066453704e849175d45d72cbd31d19c4b2fda118b7abcd05e60d20', - 86216, - ), }; return googleFontsTextStyle( @@ -5397,13 +5306,6 @@ class PartM { '8983dd343dd0ed994f9036caa7c4339be503da9e2dbcb0eabfb11e097d9a8869', 1460840, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9f75a60c3862136e1540643006adf99e3516e3799e371be10c947c23071dc148', - 2719816, - ), }; return googleFontsTextStyle( @@ -5620,13 +5522,6 @@ class PartM { 'f8563807e3cef998f242fcf29b9678ba1f57f74de1a75e4c14aadcca65d9e6cf', 88016, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '878eedaa60b69bdd97b96f16c3b7c54739b022d166bb082e8d0b37792384351c', - 224968, - ), }; return googleFontsTextStyle( @@ -5805,20 +5700,6 @@ class PartM { '03624447ce891b6bc213c38bc0a049d789317986a09a1af54660effcecc2d123', 599184, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '85d90f15cd1661eeeaff492bbab615e9544c4fb3ae00f886cd11a8a86e7cb23b', - 2572652, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '51814a8392539c8edc70fd00e2ee7682182bd564d776b8f068bd6d73ce771c4a', - 2595108, - ), }; return googleFontsTextStyle( @@ -5983,20 +5864,6 @@ class PartM { 'd6922745fc2711ecc272381c42ef2fbc2e78477a35a02c5e5f831ea602555212', 80044, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6440aa177c192cdc8a728273ff3860da4d3656f07b78a6a8118593e60be1310f', - 174824, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4bd0df594f3cafb56e03d2057a1a492b17c7aa3569300ab11aa6424cad77cfc5', - 153908, - ), }; return googleFontsTextStyle( @@ -7243,13 +7110,6 @@ class PartM { '60f92687d9702ab43f2b25997b151da45d03f0ca7d36f1ebb8ca8eca0500168c', 73188, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '474c9b017cb682ab6a98994436706b1d357d004a5d2d34ce531cdc8e815c13dc', - 117920, - ), }; return googleFontsTextStyle( @@ -8037,13 +7897,6 @@ class PartM { '7d061a3096b611c5e0b4dc1d633e413ec6c235a6b8055b99281ce426bc06e060', 76820, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '96f24527bda0b752ad3fde5b8b9a351523d7769d9b3031d706def293a2319f7c', - 134272, - ), }; return googleFontsTextStyle( @@ -8281,20 +8134,6 @@ class PartM { '30b40cf3ea8e0794ae034222963338fd27a9e38912bd21f3f87d94a2214d0e05', 38868, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ccc14a60a624242ff0d8d59564aecc7c38d3519811f3fc23096a74ac1683ecf4', - 61264, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a4a5758f5fb44e034f8cf9543f1480df9a4e9a41ac1a1dc79a99358d9eec49b9', - 64000, - ), }; return googleFontsTextStyle( @@ -8748,20 +8587,6 @@ class PartM { 'b7a6bc73df3b235fc3d244105623df2b47f7bd68fee8e26ec14b74853b6dad55', 79812, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '01199de5ea713980998b64e4c34cfd62bffca1fcb08b2a29bb4feff8d51d5b62', - 282864, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '491d1a0a281514a569bbba94bb7d4533ba8f1cfe7bac42f56dfb3163159efb6a', - 292088, - ), }; return googleFontsTextStyle( @@ -8870,13 +8695,6 @@ class PartM { 'e16ebc35d763f9e01097a8f509af98611e0af06958dc29a6f8a9c7e4ac41b2f9', 84984, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '22739dae99da25c4da8bb9d706c334d88795bd214d4de6f30532ddd957721a98', - 135140, - ), }; return googleFontsTextStyle( @@ -9528,13 +9346,6 @@ class PartM { 'ef5d4ba20931a2dd7c577ab588875d541366290f1d1fb3e882fd3476e887e873', 133216, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '42944ca722b9cbd5c87a6f42f175a2a2cc2811595cf68059620b5cfbf4030b8d', - 513732, - ), }; return googleFontsTextStyle( @@ -9915,20 +9726,6 @@ class PartM { 'a5c6ac647695c1e8123ddba332d2733298dad49b6026c17be935f287777a7037', 179312, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7961dedef7331cecde746eadc033a27ba6c2f8629c4d6bf80ad69eebcdf487aa', - 371012, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd18913cc67c9a7006610f28056771fe0ed391124984773d24beb969598581208', - 375164, - ), }; return googleFontsTextStyle( @@ -10341,20 +10138,6 @@ class PartM { '16d71eb5bf1f648f762bff330edc8ac370a088ecdf05520c24517b7981b5e700', 191348, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8c4fabc592409f0ff284478aeb1b2a0adfae9a596011d429da6f39ab3e58d562', - 415344, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '978fd0883e28acdbc01114d4f3f1dcaae5c4ab9a19c798f60908e77b8d5b273e', - 406748, - ), }; return googleFontsTextStyle( @@ -11093,13 +10876,6 @@ class PartM { 'd9388f494771d84b39d07742794df80094217eda05d92e3caff8b416c6f26e89', 53292, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8318fe2fb0079979398bf2835b24591d9a1058bb722e88ed9c45fb241e9af16f', - 130360, - ), }; return googleFontsTextStyle( @@ -11222,13 +10998,6 @@ class PartM { '0a35d1d810ee2bc3a427215a20c4e41a02f07e32ec965dcc75cecbf74063923c', 62676, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e798e3d0e0461d3cac74ef2c40280f92da0d0a3afd662700be571214023aa240', - 80412, - ), }; return googleFontsTextStyle( @@ -12459,20 +12228,6 @@ class PartM { '9649aab565e6ceb833f7a621f14eb970634594d9d61a4538c4138841cf0df20c', 106644, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'da2aa6be528e0f4e440fc087331636da3728f3f729c2e145081e24f3893f0a2c', - 206240, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd5170a1f19f435a4a7b1c18f5f5f5a0d2545c192e0ed6e90a6ceb1ed26437972', - 213432, - ), }; return googleFontsTextStyle( @@ -12616,13 +12371,6 @@ class PartM { 'bba72f1787e43b708206fc7f8de40c1b05983a06a40e86c4d73d118169f95805', 882128, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '477bc7e7e0e0287423977818b7ea31b64b025978f50b905f758cd7872e7ba7e0', - 1447904, - ), }; return googleFontsTextStyle( @@ -12829,20 +12577,6 @@ class PartM { '1d8ef524f468284d32d61f3dd500409ce47bd5b71ca1bc38a320a9b8a375d903', 64320, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6128a516d036e8875c0e2a6b619de03328dfb168cbd49e14e0c48241ebd2067d', - 118896, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'bd1ad4bb5d0e8c07761088480cb652e0f9c386422a948a77c049fac9ba7d8eca', - 138036, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_n.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_n.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_n.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_n.dart index 304d05cb9df9..2ce46247042e 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_n.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_n.dart @@ -133,13 +133,6 @@ class PartN { '753b6658174f4e562f1a4f6d06f560858aced2a6e1a9666f385966abfccefa2d', 1441836, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '41ea6d61b7c9260fc8fc2e1716d233ca777f3500814b2227485eb16a76021098', - 1642876, - ), }; return googleFontsTextStyle( @@ -983,13 +976,6 @@ class PartN { '6f378946ec2ba82d4d98c95f3347ae8bf36508d5d86e4856015ddb9c058b4657', 148212, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8fdfb4e2bde8f3fb799a22d9d7fa14df953975567f0b292d3606dce70d7bb50d', - 387340, - ), }; return googleFontsTextStyle( @@ -1119,13 +1105,6 @@ class PartN { '33cd4f7f08d400ac1b7991760f9419a95a74d65cef5b7a2f5724b2b894d0f935', 73212, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4d66546d8dd43d69ce40493e78c99530f419ff7a3895c3c5558e4e4a08303d4e', - 149480, - ), }; return googleFontsTextStyle( @@ -2042,20 +2021,6 @@ class PartN { '9c087641821acb77ef89857f89ca233c69dbfc161b7856944bca3a9fba4c3e0c', 121968, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '80f975819273f5c5d2b4c103ac149b21f49da9d1e46c1553b7b61bcc0d6b64a0', - 432560, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4d55a7674e051e05c56c0da660f3ef93f924e9ba3a6a5cd2a996008adbdbf363', - 474700, - ), }; return googleFontsTextStyle( @@ -2659,13 +2624,6 @@ class PartN { '7377b761d3b419a8519ad9bb3106fb867feda0c83905d1cad644420e4326744e', 32240, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aed7219d197f4e71407959392e1d0fc8726de40d72062c9856810b6e5c556c2b', - 64680, - ), }; return googleFontsTextStyle( @@ -3324,13 +3282,6 @@ class PartN { '9667665537b04fbddbc35918f5f2272f79e27f78bf77f39d615c44109d1e9b1a', 878404, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd0be6b8ba15d17dc24ee5f510e2c8879df068cd39fd73b25a2aad89facdd5711', - 1990560, - ), }; return googleFontsTextStyle( @@ -3474,13 +3425,6 @@ class PartN { '58fbd8151917aea5892c435647d6d6a6f21989daccd5abb567a47de591f7c1df', 178848, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cd61ea76e77b568cd4b3c9fee981174923415cc7c30fda6b6f95d7bf7f0a5f3d', - 431756, - ), }; return googleFontsTextStyle( @@ -3676,13 +3620,6 @@ class PartN { '51a0d5088ba9fbae4d2948d1d91c24cffd727c479d2659bfc7b35c020d1df230', 215344, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '69069b7bc4611d97a8a400a9b54a202c927549f08b58a66a2a103da04e1ec6fa', - 326252, - ), }; return googleFontsTextStyle( @@ -3791,13 +3728,6 @@ class PartN { '83adad9fd14d51a4ed9153c039043ca82162990b072dc06b3065270f38f489ae', 528464, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9cd79c07517724178100d92a08d6eee7ec1ecf0e1c469d27635b5d309043e68d', - 691360, - ), }; return googleFontsTextStyle( @@ -3941,13 +3871,6 @@ class PartN { '7ea03094952f5e57c182669016e2f8c98a284986380aa5e97019837fdc88eff4', 51832, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '73cb8337c811a9308de8183175429bd89768f717760f7eeff8ea3a5d503e77db', - 107524, - ), }; return googleFontsTextStyle( @@ -4154,20 +4077,6 @@ class PartN { '2aa705c8678c53e12eab4b6b1e0aba10b6586b272b55e117f69183aad168b567', 571024, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ebd57085500510a700878e1765b7135ee04799ae3875ff9bdd77896e22a30ad9', - 1872380, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0bbff04ed9308603061c2be56bf8166f2b400a5085480ad5301326ec8b6e8bc2', - 2109344, - ), }; return googleFontsTextStyle( @@ -4276,13 +4185,6 @@ class PartN { '5c04ddddb9c6ecd3b903085d2435ab13cc20859aca01c8eba3a19f9d93eb96c4', 84956, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1e93661a3760a6a18e1718c1d26a8af65750bf941d8ff7c858b513719c0aa547', - 133464, - ), }; return googleFontsTextStyle( @@ -4391,13 +4293,6 @@ class PartN { '8ad50dc660e0b19040c5bfa22acd022867a24949521479e1c43d6b569f23cc62', 48360, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9535d6f2a5ee117589c533636f81f3749d669df046e029589b3b7951e96b2a14', - 72172, - ), }; return googleFontsTextStyle( @@ -4648,13 +4543,6 @@ class PartN { 'c8acb8cbca090ef664f795990e107f3a7e9cc8b1522d695d3885aff5b22ba704', 192368, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9f57889c5e1b8e2dccee7d4777dfa87930e6fef1f0eefbe84b98d42a82bc5a0a', - 841172, - ), }; return googleFontsTextStyle( @@ -4798,13 +4686,6 @@ class PartN { 'dd57f9ae75f66f30ab487f7b9c27f5f13d496da4e609f77e60d3c17567a77bad', 48364, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9e4db708aa0517646bc9125821a0da178afe723ac69723eb1006426d8b170eb8', - 220384, - ), }; return googleFontsTextStyle( @@ -5000,13 +4881,6 @@ class PartN { '558f33450052f6a722b8ad301b242fa9b4f1d6bb4c869a7f247e11602821cc68', 121868, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e20085eaaa6348133058597bb0f96966ea1a638ffbe9275f64d0ce0e43b8bc1e', - 190228, - ), }; return googleFontsTextStyle( @@ -5115,13 +4989,6 @@ class PartN { 'e7327f808707f3ce9685836a548c8471ae1e615508195b1edcef3b6ed171f193', 179848, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7dede571a11d7becd769bd9a21a05ca105d3ec6a9f14f4e373677937268085e9', - 206684, - ), }; return googleFontsTextStyle( @@ -5230,13 +5097,6 @@ class PartN { '29cf3a10c89ba304281d16baa0853bca85fa00b629ee1f7a7f27a0d9aee28cd8', 39480, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9e1156579818cefbd8f1d4fe9896ff2ddadebea54a21d67369dcb1fd6d9f3ebe', - 61048, - ), }; return googleFontsTextStyle( @@ -5467,13 +5327,6 @@ class PartN { '23cd8975e9205d3452bf02394af92f7ddd98d66ce6cb7dd997ef5f3ad21cd05c', 135668, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'beb8eae2c3f19972e1e6896752d801730e0548abf9f8374eec85ecf503928a87', - 454976, - ), }; return googleFontsTextStyle( @@ -5965,13 +5818,6 @@ class PartN { '27b78f0555b2746aa945738c7d9708e381f31924a63a64ca3138416588fe9ad9', 129552, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4a5096c99c121a06a320aa9d9b3636e29ffc7a870300fb2d169a117b1dc00282', - 284084, - ), }; return googleFontsTextStyle( @@ -6400,13 +6246,6 @@ class PartN { '50ade0bcb87ea45a71b67cb3ed697c6e77d43821be2c01156446f255df301ac6', 59488, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '89aa281e4de64f5f9c82c880e4ee8e9eb84d94821a1a8b94b82a3108a4b23c7c', - 124684, - ), }; return googleFontsTextStyle( @@ -6550,13 +6389,6 @@ class PartN { 'f36d0ba106d0655f4e55079380745d1071da55b8e490397c3ca52ff256d6da3f', 84944, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c310de4726e4c614bd0bbdc416073f65d9b9b62c708abb18a6a322980ba22214', - 174328, - ), }; return googleFontsTextStyle( @@ -7222,13 +7054,6 @@ class PartN { 'b97e993805373744d3139eb79bb7d0bb9a098dc27f4b68f267178077bc4d8a4c', 219844, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8e6e5d0f74987c66d7dd6e5cb2d6625af87bb367a8fe1894220a5d53e9a1b00a', - 640992, - ), }; return googleFontsTextStyle( @@ -7435,20 +7260,6 @@ class PartN { '095c006f453ad5af51abdf0e3e7ef9c1a3178b7de556e00e9fdc7cb0f95a5d22', 350972, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b3325007bf68f52b931ab5f2f8cdad8d1f9379481fd52f53709808ab92f34d55', - 1439808, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'c3f1ee9cbfc8a0990b3d2c7bd3c4fb190a66013ba6c02986a7d7a7659e7a3985', - 1592576, - ), }; return googleFontsTextStyle( @@ -7965,13 +7776,6 @@ class PartN { '2ef7e599a0a6aec8010bb835547904f0a4326308582fe68bc0eb0674adb3610d', 365280, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee354a1c4ee311339caddb2dd2a022842b122f262a36988c5807d17c8c73e7ad', - 1144428, - ), }; return googleFontsTextStyle( @@ -8115,13 +7919,6 @@ class PartN { '8f67a808a533bd9c8c2ba6f1b3702504128eb0d49b50281404f02ce664207953', 60816, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '47d53d032397021c21f3e53bb233811a20a80556576bece0db3d5b6b358aee39', - 222516, - ), }; return googleFontsTextStyle( @@ -8526,13 +8323,6 @@ class PartN { '68ad3fe4d0efc967e6efc0892f5ab67ce366a3eaaae1cff530d4ab2821a6ce5f', 173808, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '04b82608dd22094b08bcafd7d789b97ecf65616e93eb641661e0e73d3d2ca3c4', - 657712, - ), }; return googleFontsTextStyle( @@ -8641,13 +8431,6 @@ class PartN { '5624b6a163ef440cd5b9a2afe49406ee6d2450c36ed5e043169d7940cd86bc69', 101112, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5c319d915fe370b194d91f7bc619c2fb1d4cf34e6599554484b28575fefad8f8', - 169200, - ), }; return googleFontsTextStyle( @@ -8791,13 +8574,6 @@ class PartN { '1431410504da3eadd109a100b7bbbddcea56b710fac0b31c6a08744885c41260', 57536, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '709bb2d5eba99998fb74b7a0d8480439ef9bf33a2f3d06aaedb6d719eed528cb', - 226948, - ), }; return googleFontsTextStyle( @@ -8941,13 +8717,6 @@ class PartN { '46fe4b693c4572aa5ad785589fbfc8c3880c74f8cb95fa97acea94cb7f5a1c05', 7055728, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1eedafa10edf16aec2dd6d47296c16803b007c320b7008b0351dd491bc838041', - 11874560, - ), }; return googleFontsTextStyle( @@ -9056,13 +8825,6 @@ class PartN { '650593d853aa0fe29a613bdccfc49ee3c947dd836d6595219241b27b0a4ec9c2', 46948, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aeb59d1b88d0ca01d4e30be3d57367ea6348726dc89256a96ff397d2f6307ecc', - 106612, - ), }; return googleFontsTextStyle( @@ -9382,13 +9144,6 @@ class PartN { '8638b2f26a6e16bacf0b34c34d5b8a62efa912a3a90bfb93f0eb25a7b3f8705e', 46372, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '81cd05fa2dff202212e8b7a5276a6d22bd7ffa047d3bb3aa6f2ee6aef72a224c', - 111040, - ), }; return googleFontsTextStyle( @@ -9946,13 +9701,6 @@ class PartN { '6b77a08bea2bfbcba7c7bcc2ab34f3ede2c4d9bfb062d3e3ec4cfdad0f4babb6', 5236448, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '783742b7047e164b64b71664ad261966ff91851af4c9723e7c1f281a149a74e2', - 8794328, - ), }; return googleFontsTextStyle( @@ -10061,13 +9809,6 @@ class PartN { 'daa5c6c4df10f1cc3afb1686274e0a4ed22062fedcee4833ac31531d25503a1c', 152636, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '210b7ebec20fa9c931032214c560436cabba2a248bcbc2acf42f27cbf5e925e9', - 253052, - ), }; return googleFontsTextStyle( @@ -10211,13 +9952,6 @@ class PartN { '38b553430dcc6ebc7acc8d1ce9c55ce9e670bf2fd2bae701a3684a715531d64a', 6155992, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c72dcc93c7125ad73f82d09ce3984afb2436a46baeef35dcd0c37b73704c8553', - 10390560, - ), }; return googleFontsTextStyle( @@ -10448,13 +10182,6 @@ class PartN { '188e5811b3721e27d85dd197cd4309f29c5928a2fe6294e9cc9c42894f5355f5', 145776, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6bf0dbd9d0d38ca8f45d23d03a83449f87e8c42101fa7110c829844975a3a0f0', - 557268, - ), }; return googleFontsTextStyle( @@ -10563,13 +10290,6 @@ class PartN { 'b3eda735f10de78523de0896263c7b5d0f038ccb1aa1b1531e752ddcf01edae3', 71108, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cd353c2aabbc032691c63b7166c575eaf8cf5a854d02eac3dec30de2c2db1e45', - 104944, - ), }; return googleFontsTextStyle( @@ -10678,13 +10398,6 @@ class PartN { 'aaaf1e025a6479d7c33c0bf6ebb4a0b6afc2f23b07828c9c4750223c74d7f0b2', 33160, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7dda4cca02bea7ee992261f055c579f22b69e3ca7d98bf60aaff2d67fb2df71e', - 52112, - ), }; return googleFontsTextStyle( @@ -10915,13 +10628,6 @@ class PartN { 'ee19533ebf100dbb59b3ee56d9c1b0b5bc1c40a9e80a791f3b2353be1dc9020e', 104624, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e2b1a424dd5b29cafbc2362c5350ee06b3307912dfb7f317514850744dcf0e35', - 358176, - ), }; return googleFontsTextStyle( @@ -11239,13 +10945,6 @@ class PartN { '060c7cef8feb121d7a0e97d3eea5c549dd433e59fb26fe441864f56a517d0b0c', 51064, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a22941d387e092d7ecda24bae1b219d63e77e3984dda77243f7a1eaa1af5f8ee', - 173812, - ), }; return googleFontsTextStyle( @@ -11389,13 +11088,6 @@ class PartN { '904a783192ad8ff4dd8a6f8920c13b04aa2f0423647923440feb8027eea5ceec', 61728, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f6c965b7c31fc03c3c949b86622d1912083ae70f9e5d83f65141c2fefee3112b', - 216584, - ), }; return googleFontsTextStyle( @@ -11852,13 +11544,6 @@ class PartN { '65c4e971a406fb65495105df1cd529a921c988da22aa72754236b159c34aaab4', 37180, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e52424b32cba5dff083c71a3b086613b5ee0047b074f59dbc59fef1a672f0a81', - 55164, - ), }; return googleFontsTextStyle( @@ -12263,13 +11948,6 @@ class PartN { '5d02b146338eebc28536ff018656bce2494951b3e99315ccea8a9b50621c5c69', 105580, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5fa0ff3e21450df0f5654f4e6c23daa0a14a49503dfa07b13afcbf260c5cc80a', - 481492, - ), }; return googleFontsTextStyle( @@ -12902,13 +12580,6 @@ class PartN { 'a150509fe38b303f5a573f5a4af92b81e9754e6b521b78f6119a6e2655f0324a', 66096, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '03bc6ec9ff69f13ca2e84e3cddf329368aadfe849baab5d89d16882de2bb698d', - 111908, - ), }; return googleFontsTextStyle( @@ -13052,13 +12723,6 @@ class PartN { '43481f57e1df05886a37b32a32a1c84cc6f650f098f1887fa74a87f836e0ea24', 45252, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '95f6466bc98be7b8391b2b79e9af1e4eb62a988cf9e0e7951986c11b6f209ba2', - 94424, - ), }; return googleFontsTextStyle( @@ -13637,13 +13301,6 @@ class PartN { 'dede397cfd0280db3799cfff6f64faef0979d506f47f3e0ca3b0f591addc9002', 388384, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f6faea4079119324b7faab78d2961e0e8a846e349ee4ce5b0e2f5027be6a1dc2', - 1653596, - ), }; return googleFontsTextStyle( @@ -14156,13 +13813,6 @@ class PartN { '038201361587f577c1aa4a19ca01ee7a475c4faa2fa4ec95fd3fd4c9dd8f62f4', 41648, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3382ec69340c022a22a796ab9ab1221365eb1c0926d2d857b89bd1339e011258', - 62124, - ), }; return googleFontsTextStyle( @@ -14358,13 +14008,6 @@ class PartN { '7ff883d0ff51707376ec40bf3220451ee1462584ea951cc25e9f82fc449618a3', 39192, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5f1d8ec594083e9d2b86bf39d1d8c366185f19c0bce9c8ebd381958532e305d4', - 58924, - ), }; return googleFontsTextStyle( @@ -14560,13 +14203,6 @@ class PartN { 'b4e62f3c7b53700d6477716f893e100bcbaac96515d7f51ea96e7c36e8a29ed0', 48056, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ac43e2a9e8231df9876af084bedda5898513f13dab9fd838bfaa702bdfb4d79f', - 75880, - ), }; return googleFontsTextStyle( @@ -14936,13 +14572,6 @@ class PartN { 'e24cbae10b939705d104f48395957d833b1fba3ed4d6a884ef882343976b0a9a', 35764, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'abc396794646e0fba0a0b7e37eb03adc8900d09f803e16ffd5794015bb07af72', - 90072, - ), }; return googleFontsTextStyle( @@ -15798,13 +15427,6 @@ class PartN { 'd32aaaa08f913a8eb06f3d9a22d6c883e86b4ecbbf06c507f05446cbc37be2fc', 139804, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3d8570990f6f594b196382efc43abaedac92c70b76e2e62f485c4cfca1bf1bce', - 584596, - ), }; return googleFontsTextStyle( @@ -16820,13 +16442,6 @@ class PartN { '9b76540cf1d5b474fb2272e3a9c42342b11521b9a613dbcdcbcd50fb913b4ffc', 10521148, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '948533151416e7c74bc744a5d5a57eb56a114a91790b6d67405873f791846a69', - 17777292, - ), }; return googleFontsTextStyle( @@ -17492,13 +17107,6 @@ class PartN { '34b1a7cbd7ccc5a6499d7d6a700db168630d041ddbb6185490dcf680f82c06d5', 235288, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd9e2ffb0e5733e827894c367e0fbd7b1b1e37032d202efb8a036b6d8899b10f8', - 1132208, - ), }; return googleFontsTextStyle( @@ -17694,13 +17302,6 @@ class PartN { 'ceebbb329d70cf733e1527fca4711aa7f6300c721c0c44daf21c950774034b16', 39228, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6410705d1124f3ecfb719149b8ee083d15c2b6e959ba8dd388accbb4aa757789', - 59876, - ), }; return googleFontsTextStyle( @@ -17896,13 +17497,6 @@ class PartN { '621734c2d3c128faa4137d7ffffb9e33c3f63c3b4706a1be176f639f2ae0296e', 39536, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd3c30f0dbb916273d05588ba6fd2a9af3adf281b7141d71fe2a3e616b17a6c42', - 60244, - ), }; return googleFontsTextStyle( @@ -18220,13 +17814,6 @@ class PartN { 'cfbc9de5a1d2d91d832877d55c939d1029f534956ac39ca8259e335b9c691cdd', 183148, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '800db67fd935f5c0b7e1db918497e7bc28106fed7c18eb6c23081d049536b148', - 374016, - ), }; return googleFontsTextStyle( @@ -18457,13 +18044,6 @@ class PartN { 'd37ee2670f8698a24c048c7f677ae4ed965644e30d1b73327fde5b58f84c6122', 83160, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bde084a1a09c0f84830fd79acd93b31a4cd9ea28e654014c407ae4f79d987634', - 169656, - ), }; return googleFontsTextStyle( @@ -18607,13 +18187,6 @@ class PartN { '3641ec03591494ac89d909e24f0ef59f349e0919c5aad63c85dfb0d37ec18134', 71356, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1563b871402a3dcaab8cce31864772ed799f62a967a2a38fb3c72fd3dde06f61', - 143868, - ), }; return googleFontsTextStyle( @@ -18759,13 +18332,6 @@ class PartN { 'a451bebb656678038dbd1007fecbc6d54bdbecd217eef42108d9849ef899f06a', 7077592, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd4c7e8af38df332d698d471e894a449fef2fe69d628ec16d1b7c7b20b43e2fc7', - 11909156, - ), }; return googleFontsTextStyle( @@ -19135,13 +18701,6 @@ class PartN { '78de4e4bc78b6eb1483c32cdbbaeeb8a3788ef8cad19b59ea688af26932f4324', 117600, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4f0b92b0efb070b10545059c0c9a2d89cd0f8530b21e72e77dfc2e8b009436e4', - 170448, - ), }; return googleFontsTextStyle( @@ -19459,13 +19018,6 @@ class PartN { '9da2072fe614d5a32e24cc8b4e02595bdb003520ad0334ec650d9188406bc1b6', 77748, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7974c0c398dea053ce06f4b2b12b2a43b7e8bc514bbb3e3d66e365bb9d582dd9', - 321640, - ), }; return googleFontsTextStyle( @@ -19669,13 +19221,6 @@ class PartN { '4b484a72bba600b5afdd43e98983a144ecd0497a121433591e1b60243f90386c', 55620, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd052f02a291521cadf6919a41294eb8d83d95f47c0918ef83a365a86652ddb0e', - 86276, - ), }; return googleFontsTextStyle( @@ -19819,13 +19364,6 @@ class PartN { '9b13701dc3a170285d101ace6aab3c7b12d1b15a8442254c3c7ed66807ae464a', 179104, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '702ef4d50a593ee38f5eb4ce540f755299eda899c008c2e6b32d1e7de607889f', - 766732, - ), }; return googleFontsTextStyle( @@ -19969,13 +19507,6 @@ class PartN { '2ef23387d7a50cccf438bcba2dccd144677221b6e9d69bd698e3a900d11f3c4c', 45920, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c01542b3c8da0d264891dac4f4df5664a2137e82f55cb08df6f671cb45219124', - 114000, - ), }; return googleFontsTextStyle( @@ -20119,13 +19650,6 @@ class PartN { '2b107044cb13f942a0d2ec23da65fcd07ffa3e6b55d97ed377c0541ca5d65826', 45584, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e9307f75210f9b9e09e54579b083a5030354e009c361b541036d7a8d2e1fdb24', - 215472, - ), }; return googleFontsTextStyle( @@ -20269,13 +19793,6 @@ class PartN { 'bdde01b40811658816aa8affc24323c0a2b11e141c203bc126ee721b0d7643fe', 58540, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7baf086ea51b85a81fba394fdd8875273a38436a7129a4befebf1c5a57c15750', - 216876, - ), }; return googleFontsTextStyle( @@ -20732,13 +20249,6 @@ class PartN { '70c22ee5bf357e5abf7df268e2f77a5a57897ed77f061e30c50001a7765895fb', 48516, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4acbd011aed44ddbeb9b8a000cc2b2d41160f971d5ab10c8c88d4d3a42cbcfd1', - 120236, - ), }; return googleFontsTextStyle( @@ -21301,20 +20811,6 @@ class PartN { '9445924a035b0eca9646e2e766e9ba9a0908573c8350b2a509067b9c011b756d', 477688, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ba8010554a37720e43c2172c7f52167256803831120998b76848217c1cef78ec', - 1707108, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '8de36e67f56dc1dae92000115bbdb93fad08629f19781c128ae2d22ff07f1281', - 2247644, - ), }; return googleFontsTextStyle( @@ -21545,13 +21041,6 @@ class PartN { 'ab8ca2103633817087acf4322a374210dd803d755af719e87220f6ab21d943f6', 54156, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '77fab4cbc41dcb1ff7fc944e5a3c85ec0c831e5addc5511906004bd476f62f78', - 291104, - ), }; return googleFontsTextStyle( @@ -21782,13 +21271,6 @@ class PartN { '4e2799f7c345a3f4b7546946f4d47b7243eb0b906201f737f8bfb4395396d0f0', 246288, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3c9f3200be518b988e47ed75f8fbfad734588dd00825f7820f89d3ce03fcc699', - 980300, - ), }; return googleFontsTextStyle( @@ -21932,13 +21414,6 @@ class PartN { 'e44ea0b065ed64305a5878809dd21683d27a6a2cca1e7555b817820497ccbeab', 232776, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '77921982fe71632b97633b0ced6b5d4fb03741bb0ca8c6730318d292b2321632', - 698792, - ), }; return googleFontsTextStyle( @@ -22145,20 +21620,6 @@ class PartN { 'ce174d5ac2d4df34763e97a2f4d8aa1cff7e9bb34edba434c15bdaf1411d0e8c', 416276, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0f07339844778685d9c8995ca12e7f15f4ba2825afecb95c833c2396c31ca433', - 1740908, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '61caf342b3b7db3d5d112203082baca0b071c0f92e0950d8904de7961b99b4af', - 1902656, - ), }; return googleFontsTextStyle( @@ -22476,13 +21937,6 @@ class PartN { '1195dd26520e7f18ec85ac88808ba5b48338693bff9944290e77c0b268ac1875', 303492, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cb86455cd12986b53d749dffae9d8a0ab6280d65e3e87376072b6b5e854a238e', - 1059396, - ), }; return googleFontsTextStyle( @@ -22626,13 +22080,6 @@ class PartN { '60adda0adfbc23938b9844589cd69a379fa1c7358f64904128cad16a3392a396', 77296, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7f5c123227d9fe2af8f3d3507c2d46ce58ec15813b1f93fd39ac36c151368ade', - 379648, - ), }; return googleFontsTextStyle( @@ -22863,13 +22310,6 @@ class PartN { 'e334f223f906a02cb07596233e3d3f833d51ee228ff3b247cc002cfe1ca4ba78', 140676, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '57fa4f7f0254c41ec0eae7d1e0ff632bfb13527529cc1ca1e234d6ca1d434525', - 376848, - ), }; return googleFontsTextStyle( @@ -23013,13 +22453,6 @@ class PartN { 'd44b413bd84b912e2fa444f02f2adedbfe951629cf7465b4ff71f2cb459de3e0', 66060, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5aae500c7e43187366886ec4958388bda658ce7233fab6ac3f3fbd6d4ca57e15', - 134256, - ), }; return googleFontsTextStyle( @@ -23156,13 +22589,6 @@ class PartN { '43f5520f75c4a39a2e357b7a78017fc46724503c02dbff6d3100fa0a31dc86fd', 9917508, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e58e422234dfdf27a61e18886fab6ad14ea050f4058c8b72ae91558f5a658b8f', - 16718376, - ), }; return googleFontsTextStyle( @@ -23306,13 +22732,6 @@ class PartN { 'ec3cf5173830f6e5485ef7f012b9b8dd0603116b32021d000269bf3dd1f18324', 54744, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0167dd2e1a86d29c6380df53a3886b3c3b7142dab65264b758f58f83fd8727d0', - 181980, - ), }; return googleFontsTextStyle( @@ -23449,13 +22868,6 @@ class PartN { '43b4350ed7cd5ce27497d4b70fe3cf28d8f328b2c64b72426bb1e189818a157d', 193412, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0856b406352b10b6daf56a4dfd60ea7a049e54eddbfc68ae23cb20d542873a71', - 453356, - ), }; return googleFontsTextStyle( @@ -23592,13 +23004,6 @@ class PartN { '86a030ba213c77c4ddadbfcda492897834f06b9d166afbb2eb4c16e42ed9f35d', 7368908, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '410e75f3d02183211c53a940e1d3597162330b64a6e2b28c48387cc31348a121', - 12422612, - ), }; return googleFontsTextStyle( @@ -23735,13 +23140,6 @@ class PartN { '089eb189bf825c467e0d2656d5b2b9b5933e10ddc78022cab24e814c2266940e', 14040092, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2497ffba3e53fbaa7337f24cb7b0e7ff4cfe91f2d01451c4667e225367a68169', - 23681072, - ), }; return googleFontsTextStyle( @@ -23885,13 +23283,6 @@ class PartN { 'f25a890c31142516bf0dcf8da53149e25d41c5a0deca2506b1081222bb584f7f', 171500, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '44a9285f40895f0d5347cd60a8cbbb496a14040f8790b017da7b1eae65b87ae0', - 484316, - ), }; return googleFontsTextStyle( @@ -24134,13 +23525,6 @@ class PartN { '8928166e83cc15e30ee48b4c593a15de990097782bef2a039003f0a43cd825db', 140236, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '749e3c70a85aa9bdd6e07dea50509f9fa21aba575bc904f07907b623635d3c47', - 496764, - ), }; return googleFontsTextStyle( @@ -24249,13 +23633,6 @@ class PartN { 'e0323c07fdb23656ed51b3307997ba0b760f00e41d50c543ca7a67e602092c53', 140140, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fe336a729a8c9b3024c095576cb9ed96d6764021214b7a0905b20df257e72339', - 224304, - ), }; return googleFontsTextStyle( @@ -24399,13 +23776,6 @@ class PartN { '7d5b138f671eb0665c8471e94d73e335933f4e1ae0380a1a08a052ce30ced602', 62148, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '109dadf28a20c8bc07ad8fe3d1c0d716797f6a0d485984598b9eb860c80fc69a', - 214240, - ), }; return googleFontsTextStyle( @@ -24636,13 +24006,6 @@ class PartN { 'f718900dc46a4aa95469e14dc0946822a0088dae2dea500cbcb8a85a9c1643f4', 104456, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9afbc692add3465f2800a2df619988e5f740a5318a5edade5c169a84e2e33895', - 229200, - ), }; return googleFontsTextStyle( @@ -24894,13 +24257,6 @@ class PartN { '4ee534b466cf8304b394dc04c4c65d7aa8b9cd7048072de63c65ab6c5ebd6ca9', 54548, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0db41f97fa2fa3a0f0b739223f3ff632dba22d7e986340a133f2bc03f4bfdb2b', - 132236, - ), }; return googleFontsTextStyle( @@ -25096,13 +24452,6 @@ class PartN { '427a61cde2232338f915c572efa40beb745ebb989a64656c4ec4aa6e06bf0b03', 146412, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f0bed9e864638ce04728cbab9de3167680ade272d158a38a931ed2503a5152e7', - 235380, - ), }; return googleFontsTextStyle( @@ -25328,13 +24677,6 @@ class PartN { '456d76af8ec33ac72eddc4243035d1b513195330076c09921e3e3af1ec35328e', 14779752, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e4c5eea8435ea1f36276eeff2de78fa6699b44c65d63e9329ab9cd8e2b68144f', - 25015476, - ), }; return googleFontsTextStyle( @@ -25478,13 +24820,6 @@ class PartN { '6665980c2c8b900d12465f19f080c80d73d54474039f250c19f0c7c88d05fae1', 242816, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd5c42bc1985efd6fa55c02fc2bd3775c458f8c2f168cdc52f6a15295f1fcf94c', - 982652, - ), }; return googleFontsTextStyle( @@ -25621,13 +24956,6 @@ class PartN { '233bf2313d2bb2058e6a9f07a16935113919fddc867d8302d156cd3fba6c222b', 9932760, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8fa297b01a08fc77cd6318faf330e06e21faf74d3aaca09535bd3e8799f4a6dc', - 16741292, - ), }; return googleFontsTextStyle( @@ -25834,20 +25162,6 @@ class PartN { '632fa0d83cbc4ebcdd609a56920d685effab13fb09026272d0cc051bbbb7c6c2', 89204, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c8cc335d3dc65703532bbe2982e8858d562964f5e283444f4156970a1cc289b9', - 419712, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'df93fc43a2e600cec1603e34a1873e7feed9588dad746f7e0ad1d630087d0265', - 421848, - ), }; return googleFontsTextStyle( @@ -26078,13 +25392,6 @@ class PartN { '3054186771aa98136630573d3cc608c42e3298b8a9cf633ded1fbfd3501c8a10', 242372, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4cf1035ac24946e59d3a239ec77a42d10fc4a1f0358dbf72d46cea0877f5064f', - 536260, - ), }; return googleFontsTextStyle( @@ -26228,13 +25535,6 @@ class PartN { '08f959a53c2929c0f18655c1d0089394615005be8c6b22c366d2a0450eb1fbf1', 60004, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '50a68d48e29996a7ef1458f29988b31a5c59934b4604fae8d93f06b143073d84', - 282292, - ), }; return googleFontsTextStyle( @@ -26378,13 +25678,6 @@ class PartN { 'd7bcb0f6d6f317b8f8977aac408ef3ba6b60a963cf0a8400e69c8c3ca6307634', 738928, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9271397bc1ac67109dd00954b472f34d62f1088d669f8d9b5b0044fca5565385', - 2062416, - ), }; return googleFontsTextStyle( @@ -26580,13 +25873,6 @@ class PartN { 'df93ca095b4e7352879df3b726bd9adda7cde0ffff0fb31d51280076bb10a671', 41928, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8b19b6a423b76631c445c89443b71075654801ebcce0a72f36c8e0828b6eb9c4', - 65044, - ), }; return googleFontsTextStyle( @@ -26695,13 +25981,6 @@ class PartN { 'f320b311ed8ebaa80764bd5b990a0ed9e8ee0d770cc788f7aba7912919a9a72b', 53432, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '203108ea44e73e429e260b9f68151ce3183df6f4d49d43c362fcaf82714bb8d7', - 133712, - ), }; return googleFontsTextStyle( @@ -26810,13 +26089,6 @@ class PartN { 'd970e2d092d9df763746085c5672a97d7fcb0c5e0cc9b2fe5c4cfcafa980666c', 47632, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c8f14497db9d6978c4fdf6d96205a1c977074884d78acf49fe00a0b74ad25b08', - 111520, - ), }; return googleFontsTextStyle( @@ -26932,13 +26204,6 @@ class PartN { '265373d6cfb8fc6e6ceb059d94b3e473d10ba93f0c3ab60f874fee61d8ae2660', 136996, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4cc86b4cc9f86f33a87ee43784bdf53ee39c91b05d24a27433e803b77c8df563', - 295200, - ), }; return googleFontsTextStyle( @@ -28019,20 +27284,6 @@ class PartN { 'b54ad50ee4fa68d81fdff08d49852c0368df3cb79771ba25df5bc94f7d1d6143', 128188, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '50c2b515976c7add7ecad66a466d43d7bc632c5935088ad175750b62657ee454', - 265004, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '9ba1a874b0742bfa42161f965d6c07f9d3947cc4eedf47794251f3a8cdb20626', - 269340, - ), }; return googleFontsTextStyle( @@ -28225,20 +27476,6 @@ class PartN { 'aaa6cd527dd863313a713708689afb9dad1c02bd2e84cd6a1a93628bd2b295fc', 109528, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '408c9d1d0b4d6525e91017002a7c6e003fc7c324e76df62b9890d76b8c08e11b', - 544092, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'df552496099f365f6f575cc3bb53558662c1c9b8b66e11d687626504a92507be', - 531772, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_o.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_o.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_o.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_o.dart index d241889c22af..4c81fedc97d0 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_o.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_o.dart @@ -436,13 +436,6 @@ class PartO { 'a08da186d4190a9039b28841df65f3de88e1faec8956dce3058711ae4f1735f3', 132268, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '49ad550a783074b2d17ebad73151312a6e017f57620180d7fe22bde1e3feb656', - 222556, - ), }; return googleFontsTextStyle( @@ -1049,13 +1042,6 @@ class PartO { '4a405cc877caf38b7fde8900cccdd9d672bd58a331964a75fd38689db0a34685', 58704, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3d2735a30bb72902a2ca0c0e2cab85b427a9704d7cf6522d276f1e36b67b4183', - 114320, - ), }; return googleFontsTextStyle( @@ -1307,20 +1293,6 @@ class PartO { '0b3cc1e1e4a24a2b313dbfce685ed4c1168bde8c73cd0bff40d40bd3dd0b0425', 104100, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '576cb5b5b34cd1ec822b2223b4e3d52dcfd6b3654808fe80b876e453f773a470', - 482528, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'e4df27523a3c035c1730fce0e1960a8e008fac405b8caf69c0ae9745d74717dd', - 530948, - ), }; return googleFontsTextStyle( @@ -1617,13 +1589,6 @@ class PartO { '4d19e64e3e1fb03b640b3585e1cae52d52631e1cf61d524baf2967994300930a', 16860, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '80e22d4dede7859f485ff7c34bae2e1bbefa42f4b4a26f9ef4f1e5120d5a8a91', - 28604, - ), }; return googleFontsTextStyle( @@ -2101,13 +2066,6 @@ class PartO { 'c0ec6d4383ba2ab8eb110748612f2964f22d1edac58b8c881e12e18a310549ce', 86392, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b141a9b74c2a55cf2ab5fb9b04117ddd02591cff4154d2423aedb8c12c530b74', - 167856, - ), }; return googleFontsTextStyle( @@ -2251,13 +2209,6 @@ class PartO { '65d21eaffe8b1b9eaf0f6ef9ea7182c75d482d71976779bb13ce94d4d054040a', 48300, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ddfcffad4937a5b893bda9d7391e8f659ee7d13534a5592d5a871bd0bbb5c5c8', - 98800, - ), }; return googleFontsTextStyle( @@ -2760,20 +2711,6 @@ class PartO { '3b1f46c9494c1644edc44e667a651811de5e59d3ab31edb47704cc92838a11e1', 148800, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd2d0fca6086e12a7019e1d17a03fc58e28eb58ccb338b8b5f0f7974f958bbe56', - 307756, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '84209016bd6896dee47d39a77d49b98ba31b3ce0b5d770227d94b81033b3c174', - 277976, - ), }; return googleFontsTextStyle( @@ -2889,13 +2826,6 @@ class PartO { '88eb913520fbba371e7ebe78b79509ced2c9beeec859170aa09ee5cd5d604abf', 174260, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '469da932e8d139d35419096b37e367569fb22f00219d14aa5730933809f02749', - 249868, - ), }; return googleFontsTextStyle( @@ -3112,13 +3042,6 @@ class PartO { 'db202e4cda52977b8a996477f6de16e75e671a349fbaaaa619d3188af86db671', 24668, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5d258aed7d1acf549da6c28d58b9fdad88ca02097216cb26799ee2ad09c82a0f', - 38664, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_p.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_p.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_p.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_p.dart index d190e53e552e..1a1e5a6568ba 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_p.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_p.dart @@ -1418,13 +1418,6 @@ class PartP { 'f10f69e174a7fc1163df0888e317cc3212b27b043d317afc81f7859da1d0c613', 106584, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f32c1185d6b7545f2b5955001c6220229c29d3162227f29cf1a417bad74662f5', - 165904, - ), }; return googleFontsTextStyle( @@ -1634,13 +1627,6 @@ class PartP { '70bce0ce66e617dd4323d5df3c28504ea3c95e4e6eca8dcdcc3f2ab98dc6a38e', 43984, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8e0c16b0af88c9b90da636aa23858058b127132480ea44cde3ac62738e095ead', - 91264, - ), }; return googleFontsTextStyle( @@ -2122,20 +2108,6 @@ class PartP { '0573aca103ed6cc5accfe7d7169aa22adf35137eac0129bb5b9ce2520638f39a', 53760, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c3abb7612e7583c48e7ed7e76e7021ec278832df1b101655c700afa2f9a78bc5', - 281392, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a5a8f42f6ab9da34693740d1750afa71461ce29da4043a8eb94b0d7ff25f008b', - 202136, - ), }; return googleFontsTextStyle( @@ -3386,20 +3358,6 @@ class PartP { 'c633f33bf0dde7ae5e5a02bed39b85e5145edc2bff6f5092a5e23cd9643fc627', 76100, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b9c13c1aba407185cba43b4e8fe97744d18fa55712109090d4993ae31fa9c54d', - 136036, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '938fc6fbe7c3604febe09a77dfe22473a34a5575e9e8bd1c835bdb07aea9360f', - 147772, - ), }; return googleFontsTextStyle( @@ -3731,13 +3689,6 @@ class PartP { 'f29c99be19179d417121bbddc1a59a8bffebeee23ef77222ab078049231b946a', 64344, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0ce103b0d263f44e0a74916f6b86f59b37a51a02ca9290f8bf573ebfb808b769', - 127792, - ), }; return googleFontsTextStyle( @@ -3944,20 +3895,6 @@ class PartP { '8cb6b1e3eed1af94466c23bf52d003e419c45fe14317451a92ef39b44fe9c0b5', 139396, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a7dc5cb3881902baa8f21f4d3d7eaa7b2af8cb69184356ced5199b5c2cbde66f', - 336868, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '00dc83b70d62f6ed2116a6cda8740d9ff6964f3fb16a049f811bfc2e86386cb0', - 343404, - ), }; return googleFontsTextStyle( @@ -4327,13 +4264,6 @@ class PartP { '3e0ad95871821b3a85ba4dae37b973ea3f759fdab8e51bd113983b7b4ad5962e', 49372, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5771e29011b1b1e9bef6324f6bf54d38b96dba317f1232ef494c3401f8b409fa', - 76948, - ), }; return googleFontsTextStyle( @@ -4585,20 +4515,6 @@ class PartP { 'e4463312989c011568c8eacb71f68b4336f5ecd9d7814e84c5048f915951820f', 99576, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f0fd65c9209dd2ae7a37fd49e62f3de000ec36bc12888624a08a5f7ca97e64f5', - 165836, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '74f8b5c315fe70e274a70ba4147b8a78d439c1f665f70c9a67746de1247b88b7', - 161988, - ), }; return googleFontsTextStyle( @@ -4958,20 +4874,6 @@ class PartP { '9614953c36067ab58e539bf477a4fa3231ed2a2334ef2e4d94d69e86f352e4c5', 231792, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fc57e382f679dbc3e14d83422e258e983d6e9a6097d6d6b53952053ca7d16239', - 1130432, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '26615c0c1a54c2412942f5b5ecab4289a1f3272398ea4e1223fcb4c9569b12c7', - 1143572, - ), }; return googleFontsTextStyle( @@ -5136,20 +5038,6 @@ class PartP { 'ad2fa5f23dc596322ff1fd50252c044c45a9f679ef81a8059b6c0767bd37248b', 110732, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a6911f7d1ed08dd0fd36f5826fe9f9f33b052b940c34f20cab59d91809746612', - 193568, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd2c697d28d1dc8d01721c0895b0098d11b659a303c2f3909a335a2bb967e419d', - 176680, - ), }; return googleFontsTextStyle( @@ -5408,13 +5296,6 @@ class PartP { 'abbf6644dc668e74ec4b5eec76e884c19d3a783e657a63b7b8710c5b683c57c4', 704916, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '29692d9cba80ee48199e17c7b769ece4703f5e6a3f85fc59c9260431f2e6a888', - 1493820, - ), }; return googleFontsTextStyle( @@ -5551,13 +5432,6 @@ class PartP { 'a85131f175891f7eff055eaf981e5e031d108d8ef8f4ded61303261373b57b8c', 338128, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3e86a12bd7bdd5acfdbb53ac8c0e9046f4df9aa609ca010dcfac0719c7d12904', - 714932, - ), }; return googleFontsTextStyle( @@ -5694,13 +5568,6 @@ class PartP { '96627e409518d0dd15d3fe6f48988cbe86b134bcad90bf4bc479e0ee4bbfca6d', 696716, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '52e63b28aa29c19196198d1e31a9b76022389d12ade5d2dfe9e14ee3ab005e0f', - 1526564, - ), }; return googleFontsTextStyle( @@ -5837,13 +5704,6 @@ class PartP { 'c03b95aa10a79b98e0e186c66f2595766d3125ea36639e3bebc07af398fbd858', 290712, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '94781b0937ee4a24592b425941cac47270cc1f643ebe6c0547b545a43563b672', - 610208, - ), }; return googleFontsTextStyle( @@ -5980,13 +5840,6 @@ class PartP { 'a50214d5839fce087b31a3497ce5041e665870b7d51b95ad727a6b3865f8bcdd', 329916, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3ca45404de3fca399f117172707a9e3f804ac103ad812ded26de22ddccbf74b9', - 717232, - ), }; return googleFontsTextStyle( @@ -6095,13 +5948,6 @@ class PartP { '65936a72f3f8fec849df1310ccb7ea1cc7ecfcf61e8e423812212548444fd5de', 131124, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3cce51411a14d217c3ef29bc817a026d27b2e66d45a91e2b2569288902253236', - 197452, - ), }; return googleFontsTextStyle( @@ -6325,20 +6171,6 @@ class PartP { '4590037b549e5a9e505c25b4f4c936a53ea3c8656570fa4f3cacc3d2bd4325ab', 116672, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '37855b9cf89c99b414bfd5c22cabafd0075427798613935d2d09ee0542e2536e', - 172652, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '572b355ef7b8faf743923fa49b60c72d7e4d5967da768968ae77b5873fc5b792', - 175676, - ), }; return googleFontsTextStyle( @@ -6541,13 +6373,6 @@ class PartP { '60899c4c4fad980810abf4080b6c4175e24e7d31705b51ff12164ff5b0552489', 86920, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3a502c428bd64dd80da5c1547db30ef3ab456becf9955c6a10eb2634499ab885', - 129224, - ), }; return googleFontsTextStyle( @@ -6743,13 +6568,6 @@ class PartP { '3c776fbf112f90a4458bb08110f4071b3a9cdf9867bbfe66b48d1a0aa2fb6de2', 94812, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e2f0d0800949901028610fbd45d40ea1254e8a6e5f42f86385ebf20bb9963950', - 140756, - ), }; return googleFontsTextStyle( @@ -6945,13 +6763,6 @@ class PartP { '9a59d6d9ceb23835d5174f2926b5b0a714dd043c497f12f30c43fd3a97713c0e', 86588, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '82aa02337a25a8f8aa6044c0a8d3233ce6ba731b61ecf74d3d922ccd35638471', - 128468, - ), }; return googleFontsTextStyle( @@ -7147,13 +6958,6 @@ class PartP { 'acbb2fce5387c4ed96033f65a69fac8ef66c7978f2671379a3e2fad2d9f05667', 86976, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1132f154cfcda392c7bef31d4f4e518c88d6bd9339e02e46f8411a12a372054a', - 129440, - ), }; return googleFontsTextStyle( @@ -7349,13 +7153,6 @@ class PartP { '38d5cee13478dd0533a552556cc971adc090341ffbb74711dcfcb5a0b98ca059', 101100, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8cdc492523b0acba8b5545d8c33310c67f03d5b9676310fad11bf149b1c619c1', - 150444, - ), }; return googleFontsTextStyle( @@ -7551,13 +7348,6 @@ class PartP { '0dad9c9dd6711312a330426f232929d8fc2c0fde8c2ea4f2820f71c53de8c5e0', 126160, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '33eb81ec0c322e176fd5508447445b88e9349600f4d3e2470fa064d334a51152', - 190412, - ), }; return googleFontsTextStyle( @@ -7753,13 +7543,6 @@ class PartP { '35d506691ee1f97f284213b3466ee5a48f6f4533a804ba2fd87d5830ad64ea2d', 128632, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6b273d1abed156fb85ef5a4d55b4fe4300b15d302ebf4b86fc4c0bbf514de987', - 194684, - ), }; return googleFontsTextStyle( @@ -7955,13 +7738,6 @@ class PartP { 'b3743e28e837d1cce928176906b547cac6d316c0eb0f955c5b7b5ffad74beb35', 130468, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3c4681121e89639e1aedf79bfc77d8b19a2bf0f1413c6fa2115cfe7427a3788e', - 196496, - ), }; return googleFontsTextStyle( @@ -8157,13 +7933,6 @@ class PartP { '3b6831047cedd26ba707a812491dc42c349661cb06ede838b397d9a7f60bb15d', 131432, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e0722a50bf66621658c479b819231fb36333f9452066d4a4c48700c5fd22ed59', - 197916, - ), }; return googleFontsTextStyle( @@ -8359,13 +8128,6 @@ class PartP { 'a7a15ac21d465a7b1843645d3989ded50779d5dfbaff27f278ae43d406d8718a', 130052, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9d80e8a2b3a137fb4f0c13f64d6fcb0c0a9160f57747470ca48d98533678e680', - 195836, - ), }; return googleFontsTextStyle( @@ -8561,13 +8323,6 @@ class PartP { 'f2ad4e72bc785e1d40a18fb6cc645a6b9e46c8c62cd0316e31b6aa9cb3365310', 130276, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b482b0f55bc2ecda1e74d38eca5c158d28a486418f45245bbeffc65d5dde048f', - 196832, - ), }; return googleFontsTextStyle( @@ -8763,13 +8518,6 @@ class PartP { 'e4c5a006b0d267c88833f179db1b09e948c2c8fd038fe497d2bf3697faaa64f0', 131440, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5f27baa1b11317aca8ee65a33210d6135caa6959ce02a4d8ed118bcd8130bf83', - 198172, - ), }; return googleFontsTextStyle( @@ -8965,13 +8713,6 @@ class PartP { '92ee2048a86a0f4709676d420af021f944b1f911c2c87ac7ab7bfe8d7fd5a56f', 128372, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c1578d02a95376988da720eb5ac74e0d23b30eef67cb347650f34dca58417271', - 193060, - ), }; return googleFontsTextStyle( @@ -9167,13 +8908,6 @@ class PartP { 'e475da53f8b3f6cf3672826765ff071cda310b21fe115697fca6f273b661be8b', 57080, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2cde9c110adf5fd1dd126282d32b56b4fc996519234d68dc42e45ace11a7c0c4', - 85228, - ), }; return googleFontsTextStyle( @@ -9371,13 +9105,6 @@ class PartP { '19577ef5d3197730c6d2eb8cc5ebcfa26fc482bd25530aa4deabafdbf55456fc', 125784, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fe15d5c08e03e6847d9dd5a1c29e37b1143c0475dfeb6dd40d4a4af99d473eed', - 189696, - ), }; return googleFontsTextStyle( @@ -9573,13 +9300,6 @@ class PartP { '2f8f7cd458e3fd72a460a4d69b73d47f54e32d431da6ab626a4d5b97b5505e03', 118844, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ea6f393478261d8cb9f8a77b1a7fda4cabe793f2d64784a18d1fbe02e339d04f', - 178452, - ), }; return googleFontsTextStyle( @@ -9775,13 +9495,6 @@ class PartP { 'b9f17a21fa54b6c13d278b66545c45cb7c9a8eb8eb68eae27adc834cd1dd196e', 111408, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '21ea055c298c4de8fb244b054c91828cf873a89d7434f7df07f58f99c1ddbcb8', - 166556, - ), }; return googleFontsTextStyle( @@ -9977,13 +9690,6 @@ class PartP { '491427f450a2773eda1c8d9b2047b60f9c341302603a44af86bb4df891f6337e', 99824, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7fa79d212008ffcbb31b04c3138f354f299270e0ca86c91523b9b4130c600fc7', - 148532, - ), }; return googleFontsTextStyle( @@ -10187,13 +9893,6 @@ class PartP { 'e70d81d3d685a3c15d31b3843051aee068d72aa1c68c6d8d50a495bdd0603131', 92008, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b6744130ae99896c9e0de3baa33e6365596aa60f6e4a8520f216fd552fe5eefe', - 136592, - ), }; return googleFontsTextStyle( @@ -10397,13 +10096,6 @@ class PartP { '653b9ea078c2aaa82187b717aa564e9fbebfb243b798843cbbabecde9e3e2a03', 106248, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2785aadab9fd530c3bc3428900b8a349f3c6cd7adaa10df0f601816fb969ca4a', - 157928, - ), }; return googleFontsTextStyle( @@ -10512,13 +10204,6 @@ class PartP { 'ccb2337fe6e86a46c0e8a214a0c748ac3f629568efc4512e31198fd735a6ebdc', 128112, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c402111901ac9ac1d0c5aa03c9fce1a48e1b67436ecaaaeb771ffbbd873d00e2', - 192780, - ), }; return googleFontsTextStyle( @@ -10803,13 +10488,6 @@ class PartP { '4757836adf11f27b68647b33303bc15d00c594739f7041cf4feeedba177482a7', 84608, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'acff79e59c90020c509dd270e23944d3766e894387c15389cfb084f0a8fd31a5', - 124900, - ), }; return googleFontsTextStyle( @@ -11013,13 +10691,6 @@ class PartP { '50e31171a3819bf505b0286a335b49f29aa34d2175610d39611b35511b635f0c', 130476, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1912fd4c97d8eece4d6666d271ef0c88f48c4a0d094366cef33b8ca9e1ecb9f8', - 196672, - ), }; return googleFontsTextStyle( @@ -11245,20 +10916,6 @@ class PartP { '4daa41ade50c7f13b53d230ac8635e5aea9ad5a4f5eee577cdff1587865473be', 94568, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8e0f945ae9fb3990b37432f8c94055e108cfd9c1c7621ce78a52e68df673108a', - 138128, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'b59c7aa1000722b78cf5c3035a31d8eec41d6c3a34a66647c5cbb63244475d50', - 140288, - ), }; return googleFontsTextStyle( @@ -11489,20 +11146,6 @@ class PartP { 'e743c8d70cbfebc192bc04faa3a17ba4573783d8a9ad3abb94d566d80084bacd', 86632, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '281c871dcb97c9d3b520aa2e9f6f9582e2581bd9bc9ad102879ad72eb62a516a', - 126668, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'fcc42f05b90a35525fe74dca126c87093a605b20f35c89df6b1969e6a52642b2', - 128680, - ), }; return googleFontsTextStyle( @@ -11705,13 +11348,6 @@ class PartP { '965d3a115ef28515b7439d4c8e6d8f74e95109a4aa81b9080a2057aea2dfd68a', 121568, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '04a2c332eef7c299978fdda23ffe300f2c15d0dbe16406b18e13f6fdd09d0a74', - 182156, - ), }; return googleFontsTextStyle( @@ -11907,13 +11543,6 @@ class PartP { '01449cd5bd7024b01d2460e10c9bcdaed027788311a42404fe662a9fb44ee4cd', 119724, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fba76bd2dcba3f0d1c434ee3182bc2fad47442f90f830f1baad93e317f20ba8a', - 179320, - ), }; return googleFontsTextStyle( @@ -12117,13 +11746,6 @@ class PartP { '028ac6d3a615a181cd463bcd71c49fa8b3901c1fcf411260547e4a91086cc388', 119916, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '724deb92bb33e1b3edb6adb36b786e5266f1c6514ed3f6ff5aed1a4eb4a7c032', - 179992, - ), }; return googleFontsTextStyle( @@ -12319,13 +11941,6 @@ class PartP { 'e2bf18df9eb987fe8a34007343d732d6bb64e492a046f139e88209ae8d6a2800', 127040, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8e195dc42d95f4fd6a9b1e107a05f792258914e1146dcbc565f8adc2d3e6463a', - 190560, - ), }; return googleFontsTextStyle( @@ -12521,13 +12136,6 @@ class PartP { '4dc13616461bfddc0c6b6cb120aaf71efa812878d8cda648f6f6c6facb5db4db', 122684, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bd6d56e6637521f4c0317774a60ff9b605d5ec81d67f4f77ee979c8ada3f52c4', - 184296, - ), }; return googleFontsTextStyle( @@ -12723,13 +12331,6 @@ class PartP { '603160793b034161ffc112c8f1f63a18b466121cdbbbc5c29d8e307c66771c1f', 131940, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ea5801a5140fcc81098fc3034cdcacb8fee58505f881af393c552e3e905982bb', - 198856, - ), }; return googleFontsTextStyle( @@ -12925,13 +12526,6 @@ class PartP { '780cf13115710e4c6d14e459e9811d95a01e9dca3bb32ce1ff404b1427274bb7', 87852, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7828a272f63a5b9bb281a89d8df87354961560210ce8fd923ebce53916e4cae7', - 130492, - ), }; return googleFontsTextStyle( @@ -13127,13 +12721,6 @@ class PartP { '266488db1b17a8c08f4619f93eba3355ca31bafe206c2e6f988eb8ac146cc92b', 92572, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'dbb041548442fb71862584b1df092c5ac31256b3c89b8b9a72e47a7272b50da0', - 137068, - ), }; return googleFontsTextStyle( @@ -13337,13 +12924,6 @@ class PartP { '46b1b8e3671f79a7028ffec23a630ed32c1860320debda6cac5748b6250bd90f', 125460, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '50b96d882766343e163ad518fe96676a4b2cb7f265f7deab3a99b5c349c37153', - 189192, - ), }; return googleFontsTextStyle( @@ -13541,13 +13121,6 @@ class PartP { 'bcc25470a7304fb0f6ef97097114e758e2d49a762b2fe1ce966b6a56b392e8f8', 131344, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4fdf0e5b05590e8915eaebe6344a251117f7e61d30a87bdf19e077e2a4b07ba7', - 198252, - ), }; return googleFontsTextStyle( @@ -13743,13 +13316,6 @@ class PartP { 'd9733ce5e1e9d2270b1663af57018957d7f7855a2c5548c03ddfc96cfc6811ec', 85260, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '2e652b1a2c58f5aa1a02bdf9a50049a0c879db9fd284684d3ec16309d7bbbad3', - 126764, - ), }; return googleFontsTextStyle( @@ -13953,13 +13519,6 @@ class PartP { 'f49ceaccc3eee72413663e5fd2c863ce464c065591c423519049c36f59fd97ca', 127540, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e8a490391e92212862718066a2d80f9ecc6552be909331d0b425da4a8ba949eb', - 191380, - ), }; return googleFontsTextStyle( @@ -14155,13 +13714,6 @@ class PartP { '2700da370e98a314337d9d6ac35c09ce8b424578df378a15f11c21399298ad19', 106576, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '05222fecb3af6f3423ca3ddf8b681b022ad5a58e06f01e053f35d90330fb626f', - 160316, - ), }; return googleFontsTextStyle( @@ -14357,13 +13909,6 @@ class PartP { '1d5d24541268eb985ae9c15de9f0d260e223079042ff2d391df2a3e454acdb92', 87112, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b10837fb257c8acf2c16487fb09086a8c06788860ea6c81bcb6cada2dcca7b91', - 129472, - ), }; return googleFontsTextStyle( @@ -14559,13 +14104,6 @@ class PartP { 'd25894c5a8db9c7e46ef432b82a8a701269309828ff26e1473f79b2acd271191', 129992, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cfd5c31adcd3d6824d71275215d0d39ac370c9df0b2ee6a325642fdc02b6bb1c', - 195908, - ), }; return googleFontsTextStyle( @@ -14761,13 +14299,6 @@ class PartP { '8d62007915f5e2d9cabdb9382932e59754b6b4d6c47e09a31ad9c510c6932203', 115456, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd102d6b6393730acd817eed6bc56ef973f356d481836ba6672afc80d94b1b98e', - 173280, - ), }; return googleFontsTextStyle( @@ -14963,13 +14494,6 @@ class PartP { 'b4a417016e96e2427163f9b1c3bd3fef78035e5c6f89f56e5826983be2af7fae', 128740, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'fcea1902a3b3b751a5f270b2076921b8692fd2388874d68e1ade2699d58803e3', - 194416, - ), }; return googleFontsTextStyle( @@ -15165,13 +14689,6 @@ class PartP { '38e4e6af7555a480a965a89de8c1d097a1f285e90243af5d4b34fcf0fb2a6ea2', 129204, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b881f2bbc6b0073da925e3a8b82f3e8fc1362b30324b58b61f9b3f242c547cb5', - 195284, - ), }; return googleFontsTextStyle( @@ -15367,13 +14884,6 @@ class PartP { '38e869093bfc515d7f5594bd9998c67f5309a1e6f063518a8b24e7ab12a09f42', 128372, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e89fbfcb976b73ab0f4b54207ba376b918fe0081e69038b6928374cf7fe22fe6', - 193060, - ), }; return googleFontsTextStyle( @@ -15569,13 +15079,6 @@ class PartP { '0e4765d37a299faffea27974cbf2e7ebb79bf7b9b156ac8fb03c70b6b50841be', 127432, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c822470ced99c1c1a544468e27bfa97b8853844206614fccfff9fb56333519a8', - 191980, - ), }; return googleFontsTextStyle( @@ -15771,13 +15274,6 @@ class PartP { 'd0c0bab8066b023b50d2ba7fe7761a2154f08dac1d16df23d0e97bb3e423c9ef', 90236, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b3cae09f717489e6a29bdbe7e2883f5e7d62b0ff183a197ccf842945464ddbeb', - 133144, - ), }; return googleFontsTextStyle( @@ -15981,13 +15477,6 @@ class PartP { '499b1d5f63152ee75f9055e80faa2612161e2a7d43261971b0eab188fcf9010f', 129872, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ddaa1a2fcd87a856cd848c9eb2f11f1ef777a9a1a74ed79875547fa2f74c1660', - 195476, - ), }; return googleFontsTextStyle( @@ -16185,13 +15674,6 @@ class PartP { '90b8b6b0dcf7bb756979c8bd6f25f0b96bf7d96d36eb1e1e846eb0ac50472d01', 127800, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ac0c184caa4a011d140b7f3f9395e4abddff342cad45f8616d4f9008ae8fb2c7', - 193228, - ), }; return googleFontsTextStyle( @@ -16387,13 +15869,6 @@ class PartP { '7fa83b59286b7fa7abb57aae05ee3372af1ca9e1dc091f5d6102ebb88cff9ad2', 122728, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9ea0d724099d0f609a22c02c9f1014ad0a82fe68f83b08e7e0d14baaa318f6c3', - 185576, - ), }; return googleFontsTextStyle( @@ -16659,20 +16134,6 @@ class PartP { 'a87b91600420655aab081027f098d0d873c7a82fbe154d2591fc437457b21701', 64988, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ef83a8775d8e3dcd6850493ed3312d39e55e0e042ecb1ba4d7856f8eeed9319c', - 122344, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '701dc9fbd7df6ff7177409bb33dc6d59ef1a7e93977c58a4653cfec6db85b4de', - 126312, - ), }; return googleFontsTextStyle( @@ -16875,13 +16336,6 @@ class PartP { 'dfd8be64cd367c3597bcbe8ffa98f308bae4e2ba49998d9f79edc2001b8110fa', 97512, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '3149db9729303e7b305ab986a099b6ab61176501c014118a84de78340ebb2540', - 161328, - ), }; return googleFontsTextStyle( @@ -17279,20 +16733,6 @@ class PartP { 'c5b978ba4cc25a23ebbbd5ba2f45e4b980772d73fdbcd766fec3ab9c245496f4', 165320, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b468a4f4e10ac03059f9670cb7de1cd580da3554ecf120899e2522bf9b8b9602', - 252440, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '9cfed7f7060813af1c5d90956ebfd05c2ffadd40bf606b6dafdfc756feb18215', - 256052, - ), }; return googleFontsTextStyle( @@ -17763,13 +17203,6 @@ class PartP { '5d94c49009b420e6be9a7ca0fa20c526117181817e7b89d67f76bd4ef1211fc7', 41652, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8af4e90d9ee3d7e4b5c9a5ab70283553036cbda4a08d8f21bdcccf1124ed3336', - 76212, - ), }; return googleFontsTextStyle( @@ -20059,20 +19492,6 @@ class PartP { 'f01005a9323da92732c62aa76dc0f58827b477069cc7587b9c95d8995eb1f55c', 58868, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '423c8f69a5ffdb9125b13102ffbd503cbf60cd290075daba2c6f32943eb5375d', - 98212, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '11556545acab3c5bc59bc9678cc9256c27114f08c8f8d327583827c9eae32d2b', - 102588, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_q.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_q.dart similarity index 99% rename from packages/google_fonts/lib/src/google_fonts_parts/part_q.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_q.dart index 5ad3b0b8d713..ead68a02b81f 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_q.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_q.dart @@ -645,13 +645,6 @@ class PartQ { '75e85595ac7acf57cdb1c64202577c48150e7aee3fcf600c558d082b040cb8c1', 72892, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f5e183e5a04dba950d8bafe4310b453c7f9da6ca3a8c55bc0fdf8a99a7d63d02', - 119072, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_r.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_r.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_r.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_r.dart index 3d585fde5e99..b76e81e2f778 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_r.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_r.dart @@ -165,20 +165,6 @@ class PartR { '759bf1ccd98e0db6b9ee2fd13b6a9da416248a72f5ab6093630a0828a4245c02', 74304, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd04e80e344f6e81d6880d298fdf6d71683009f5d42f08e9e9137accd9317c169', - 136368, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3b279e64430b53267f4928618a870d8b1f404c73ab7a0b95e609a39ed654de58', - 139856, - ), }; return googleFontsTextStyle( @@ -416,20 +402,6 @@ class PartR { '54eb1ca5a301195b0128f23a62ca81e5e6b5fb550c4f1b406c37daa1eecdb213', 130776, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '30ca714579c8717d3af27530f4712d64500f39e3bd4cfb760fd90c97966e0d9a', - 407240, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '1816d64ae3d4725f633123000bb65f68e192d834e8d2a4352b020583e7ec13fc', - 434720, - ), }; return googleFontsTextStyle( @@ -566,20 +538,6 @@ class PartR { 'c6a2c2080ebb1d75d01edb1065b3fa773a34d6fd3d360412cb51975de3597f13', 46960, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5256b491feb1b69ca244f12a2af2d898e9283565dc3a503fc10db2ecd7578da9', - 70748, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'c43948301e7b50594a54910f5e837b61f60594c212f0c368f0862598ef13ee21', - 74044, - ), }; return googleFontsTextStyle( @@ -1082,20 +1040,6 @@ class PartR { 'c8a737b5625e3b6b1a3c17952df0f8294b6368003338f8b475395794902497c7', 114968, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '90f3cac89120353e4c0af7e5cfb17dde8cf5279b880847ce0fe8af223afddad5', - 241220, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '67ef86121563e3b3165f79c348c070d2302db855fd4c9d353156b4467d19b286', - 240096, - ), }; return googleFontsTextStyle( @@ -2057,20 +2001,6 @@ class PartR { '3b83f274e3a01a577c49daf3459e70f2e25e337da172b595fc5b64d7db3b998b', 147932, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b4f4e6b5bef16041c957a7e9a27e1f1c9911d0f9b5f608ee8a5bbf768e2e7ef7', - 451868, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4dd07b3f47790bfca67d4dfdb311542c4315ccc346a5724bf84b378da524cc1e', - 267816, - ), }; return googleFontsTextStyle( @@ -2367,13 +2297,6 @@ class PartR { '711c43d85e02884b5bc74994b87fab1fe84c9f9548495a1c2f0b779b7995f861', 92368, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ae2814a9f03af82526b28dbac58feb1d35d0768b62be8f2c269848fce576cff5', - 262364, - ), }; return googleFontsTextStyle( @@ -2503,13 +2426,6 @@ class PartR { '3a0f60aedf0f6def8bfc84cb0ff1d9510fefbcdd4de7ae50c7782f23d5f39a78', 129660, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '0bdc9209fc1f6ab6f235ce88ab54b6319d342a905eb7162669386db6932f74e4', - 1693576, - ), }; return googleFontsTextStyle( @@ -2688,20 +2604,6 @@ class PartR { 'bfa44e979713349a9321d1ff2d5b1f9caeaacb910dd7c26e14c7253ee67d46ec', 48620, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ebc72857664e83a0bae26964b7e641390e3bab8d7bfd1e1cd529274b36c57be7', - 90208, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'a02e50ee0db840c90b73859a449dc6db5666070e002e41bf6c480c96ada1c9dd', - 92580, - ), }; return googleFontsTextStyle( @@ -2852,20 +2754,6 @@ class PartR { '969aa7bdff7a2f1f3b9b9d446386c29708d7e4256649848e926555b1f96d4870', 32428, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8daafcbe97ddeff36421e7ebd620ddafa9dc5bac3759820364d2336e049bc6df', - 62120, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '14090c17e272a72ffb8b301e7da4427ec75400bc08169d31de61e89db2f3a66a', - 65444, - ), }; return googleFontsTextStyle( @@ -3016,20 +2904,6 @@ class PartR { '009c8f4e55d8d01d20b8589c624f10d9c93020806ea657c8b9bdea6b3f82fca3', 49064, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b96ed7eb7c437b02039762a6fb837290266c702b78483f889fac20e1f769b690', - 89676, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3ce62e2031e1b5e0cee6e90a5c312f102dc5bcbe38c65f1d6006e5fca50dda77', - 92036, - ), }; return googleFontsTextStyle( @@ -3145,13 +3019,6 @@ class PartR { '9330a9fbc36ff5506742578acaca0c1dc73f794a4d2dabd0ada811902c90ace6', 62052, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e24e3adecdbcec3b2040766ad02af4016fc68ae8089caa5ce41eed971e95bb0c', - 112408, - ), }; return googleFontsTextStyle( @@ -3476,13 +3343,6 @@ class PartR { '0be357b40aec49ae663c0d73b11d755c516dff2334d794168d3f0f5d8a9a2c7c', 79800, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '58382edd7dda87b7e5f1d40de3895ba92cbe82fa13aa8792eca3910cbc2a0389', - 146800, - ), }; return googleFontsTextStyle( @@ -3675,20 +3535,6 @@ class PartR { 'eb33412cc86efb3fe2d9e6417487e72b6106ffe49ad54d111046512d46d1586a', 95512, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '30bfcb066d585d04588d5fdd3e5c58d2bf34f226649453322611ee7f75ffdf78', - 194136, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '5a0b1cbac35afd05dee248306c9b4161af4b9edc2065422b975240db486d3bf0', - 181760, - ), }; return googleFontsTextStyle( @@ -3825,13 +3671,6 @@ class PartR { 'db1c657a43c0907ab09dc66519f6957aa151c4bf5845a4e9ef5ba34bc8c7586a', 99532, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee22f3f43bb558eba505202d65d138923e9bfdd81445be861a449bef53f5d0e0', - 188196, - ), }; return googleFontsTextStyle( @@ -4027,13 +3866,6 @@ class PartR { 'f26a45f176126b2897137372ec16c9d9fd587f4ae58c56a2ff20f7e254b3606b', 82668, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '783185587cfaf3e9e3604991f7a8df9f3f70b938133c42675a1269a3c729e033', - 117944, - ), }; return googleFontsTextStyle( @@ -4142,13 +3974,6 @@ class PartR { '920510be705675ec79eac213d308ce22f6b94aa5160e8baccb646c4c33b1fe08', 117576, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aff4d879dff929260a49e39a05a942e4ab7e3a752c71f97e87c1ca39a5b9b053', - 166460, - ), }; return googleFontsTextStyle( @@ -4560,20 +4385,6 @@ class PartR { '2be85ed83bc8d02987bb490c98c38a93a4df5217e4d6b8625530ec3b912811de', 58064, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a8b6233f7141edfb171310f28c0bea7de4da227ed356670d17adadc224b0dbce', - 117548, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '80b2673c982808953cc042049530680bf31e2697f6c581af7ccf45a6f7197869', - 116708, - ), }; return googleFontsTextStyle( @@ -5389,20 +5200,6 @@ class PartR { '0ebc452fce0650d83fcfb7886f3e77669a66e01c5f3097a50a7326702c8d8ac4', 95356, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '49aa93db332c57603f3e5557f500ffba29ca802ab392c70669c40b84b073f876', - 338352, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0ac43889c4bf935567c9a8368d755f61524b7484a4fc4a981f9eb1533d91c7cd', - 360696, - ), }; return googleFontsTextStyle( @@ -5490,13 +5287,6 @@ class PartR { '7a0aae29a147c35f86b7950556933ecd8daacf8c7080c6686246f46e1e27c3f8', 88888, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '491037758e9c150c66d50201998152b203157ef12ef8d45a918d55baaae1a82a', - 1684068, - ), }; return googleFontsTextStyle( @@ -5675,20 +5465,6 @@ class PartR { '3cd6f4b8ba5f447fafc30130d8c3277aa2f6b5ba5a7c23706ddb78394733a7cf', 85892, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e7fd9b56acd156606bf8c6310f8759554bf7d7b0e6632b2ac5c489bdd45627d4', - 166876, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'fd0f78155216f301abed839bc66415df77314ea7339388205d8a78f657ef2301', - 179276, - ), }; return googleFontsTextStyle( @@ -5895,20 +5671,6 @@ class PartR { 'ad0c938e6990c0ebe48bdcf69c0e8a66b7bce9c94f3a171df404efb66c483e8c', 220208, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a24c1d27be0c91fe58f976dcb68aa3a648518844933dcdb76e451d0e6b97a61d', - 3235924, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3bb15d6309a79db2b59b9609b6004c7f0e311994ad3be60eb6807880e275c82d', - 3774676, - ), }; return googleFontsTextStyle( @@ -6052,13 +5814,6 @@ class PartR { 'da13d63891c8ded2c6d53e7171ba4011bd7f99063c5b87f5a80da3b381801717', 102448, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aa3d35baff0d52d9bfbffd79fad6ec0ffcd6faf946a5c108f54a60efd677d886', - 202212, - ), }; return googleFontsTextStyle( @@ -6613,20 +6368,6 @@ class PartR { 'b0aa892bc178e58564eb1d98084637759a3e3e7b7e3108364ac3928c83628104', 70096, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8707462d4c110828cb96d758eacec87186a63649ae313bc2cb37c954bf11d062', - 130144, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0dc78b9361d33eb2f8f5777cbec6781019b9b5d99ad04695c7afe4f84e497ff5', - 133424, - ), }; return googleFontsTextStyle( @@ -6958,20 +6699,6 @@ class PartR { '0b9f102fe8e334a5c5909a2451107395978b51d9a94c187e057ac00e0a88fe2f', 71160, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1f8f1e2f1c539ad58bb18453f6bf0d22ccdf12bd83f808ba9fd14b7e866d0c71', - 134692, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'b3214929458bcea73b3070c6e0a82e493b748fd504b650b51a1ca09b18792fd7', - 132236, - ), }; return googleFontsTextStyle( @@ -7519,20 +7246,6 @@ class PartR { '17d1112da9a6a82b16376ab2635d18e972b1e9cacbc634ca8e995292810af2b8', 173740, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c7821c93de24b3605874df5fe28f5532c5b8812fa97b36eff7fc3d6caa47e78c', - 297584, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '99d495a62b775b5f0bdcd381a5cc048625f4b574d2527aae0267cee3df79d4fe', - 293736, - ), }; return googleFontsTextStyle( @@ -10004,13 +9717,6 @@ class PartR { '7016b56efa48117800ea2e72b346b3ec5a68128be8271b7873c5c942e827021a', 50424, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5326931796d3ef29f626b6261d79858817ce86eca2111db477d8f6394657ce63', - 83724, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_s.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_s.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_s.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_s.dart index dca10f5bac1c..dfb33a8c55ac 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_s.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_s.dart @@ -95,20 +95,6 @@ class PartS { 'da349c2a632e3e525140dcc4f3dd9b043efd88833ff3545f02dbe151fea3e6bd', 205792, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'cd585c70f8ddf16af22295e8cecea491ee4e5c0c669b39cff1858b9606d90e84', - 280864, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '224c7d57404308a273ffb7e8137b385c127f81bd1319dcdbf6f8c5b412079d03', - 303268, - ), }; return googleFontsTextStyle( @@ -315,20 +301,6 @@ class PartS { '5e69ce759eef4ca2a94f22f59012c597549b08538c37d58d91a31a71ff9a8169', 102532, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ff01c6ce27cb072c87d71fc7e6994673b854e41f451f881fb5fa451d430782f3', - 192880, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2d11039e85b9a21848d89fee724ba90e295f31304d35f695817ef59168f16068', - 203156, - ), }; return googleFontsTextStyle( @@ -521,20 +493,6 @@ class PartS { 'a7aa3bc253f80b467a770a189b3158d3aa9adcfa2ba28f81b228b3e88fa4d439', 54908, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bd078b1f466e74ca1f5b760a7b9c251390e02bae1cf9ff6408707f8b7ad000e9', - 79932, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'fe18c1110ab1cdf22691448424f5523284eb044a6e729741e01b30727192fb04', - 81124, - ), }; return googleFontsTextStyle( @@ -1009,20 +967,6 @@ class PartS { 'ea9a8d68ec764cd995f3d949cfa5ba801d28261914d09abf7b9c8a9f3545afee', 73496, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e1c79920026a4bff5f449a537264c0d94fb9a4b9fdd499b45a75764553f6ef36', - 434080, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2f5eb0b1ec5c589111e1ddea19d271dcae5a8f1f9a8685027b2872fcc97af8d4', - 480412, - ), }; return googleFontsTextStyle( @@ -1852,13 +1796,6 @@ class PartS { '9a8d11d09635f64520cd206d28fe6111bbab497096b099a237f4c307e503e78b', 112172, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd6e4d8556dda83bcb9845ef69f1feb44a4cb157730ae87b18047d772d1ca5606', - 182308, - ), }; return googleFontsTextStyle( @@ -2720,20 +2657,6 @@ class PartS { 'd46db29f5bf5ac13608a29335623addb08428bd4a6595d7be2880dd907e8108f', 167960, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a4a1bd27bbd217bd5d1a767e68033cfc342bfca9b7d6179db23a78517ba17a7f', - 265528, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '050ccc8003fa742c31f3f7c67413026354ebe407a3ac12b14d5f6c1ec886e881', - 270684, - ), }; return googleFontsTextStyle( @@ -3288,20 +3211,6 @@ class PartS { 'e138b2d19611e2d5c0414048e1c1ba738a9878a2bae90edfb6bfa583c185af43', 96504, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f8bac1c23ce75ad34a85eb686c14f6c9bbc80302594311c5132b6f604d93adbf', - 166648, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '5ed84b290d2871d10e31d2d8d15b54df0022025f8fe9101f93eacfd1fed95cc1', - 171824, - ), }; return googleFontsTextStyle( @@ -4120,13 +4029,6 @@ class PartS { 'e18991188e97a413991ca7528cd19164486e768065e7b540540c1f79999d6806', 33248, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '77552bb29a9f5a3527241a3445c4a3630df1cb4316dc9f201968b0b81877569e', - 49380, - ), }; return googleFontsTextStyle( @@ -4900,20 +4802,6 @@ class PartS { '2e8cfca616f28418f9ca37350cafd63ed1d28ec758bdfcb1048df413e54ccd33', 402500, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c1e85bc79c6bdf26d37adc0addf17b5ac7511b0d00784e634bd2870d2b3418cd', - 1258240, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '5e661465a995739579c31e96c8c198bab5eec7fd8100133972178a4c333a76b3', - 1512096, - ), }; return googleFontsTextStyle( @@ -6411,13 +6299,6 @@ class PartS { '83d0a418229f2895d3289e68b9734b1efcc9bb94df036481564930bacf779b86', 198580, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '1b8ac9fa401547b812e26a18cac14ebc1a453f929229d17b4689ac7de1c9c0e5', - 493384, - ), }; return googleFontsTextStyle( @@ -6533,13 +6414,6 @@ class PartS { '8c37950653a86a2c49192df57703cb8e648ec9facf7d03f5754d23d5f8424047', 191888, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5c41ab97489f3aea91001f68f20fe79fb7b90b1820260500a3ba060de941d8c2', - 319904, - ), }; return googleFontsTextStyle( @@ -7271,13 +7145,6 @@ class PartS { '002ea5ecdae9c091804950312535506ee82ef1a71639f4559681578ae1a09ae3', 47224, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '87d335103c35dd8b605748d7e48c2a3fcea3fbaeb796ae86ffc44d6b5aa1f072', - 66892, - ), }; return googleFontsTextStyle( @@ -7365,13 +7232,6 @@ class PartS { '77893d772a9cc3e3985ac6a2ca67960aafd1c7919af57ba3f6e9607d149f1f72', 86580, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4af383f0123d75862a161cdaad973561bbd5a80564e701e887eba98275bc84ab', - 116920, - ), }; return googleFontsTextStyle( @@ -8131,13 +7991,6 @@ class PartS { '91d902f1392fa560f0a0b44b9bb87e1bc0035b9a31d9f8304b8ce85c351bcccd', 57948, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9863bde3223bc952e1b25685cd4943579fa1cad2632a3e71f3c1f1b7b0903a55', - 92556, - ), }; return googleFontsTextStyle( @@ -8873,20 +8726,6 @@ class PartS { 'ebd6403ee380faa2a977ce48bd4a9a85ddf1c95e788be402ce40ca0562dc193e', 100092, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6c64c0a68371821a69f8978956fe4a91428d6cfaf97ca333f80427e671fc7c57', - 240904, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4d8791f16312353df4c3b834eff70162ee6ee0e8266a764e2bb585198baebfe6', - 213312, - ), }; return googleFontsTextStyle( @@ -9093,20 +8932,6 @@ class PartS { '0a69faf1f10771201c208d59b718ca6807fc1f43a3d394fbdbae85bff0a2b061', 99660, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c6b91719bf8ee1869b16ec1111103b71364d51b0f9692ff20b81de354b48a94f', - 241528, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0e00c04a4d5617ff5d98fd0528a7a905aacb85a8fba237827f88ce557a779af2', - 214104, - ), }; return googleFontsTextStyle( @@ -9313,20 +9138,6 @@ class PartS { '1468d9a361a9b7558f67b841fb843b3402bf5395438230dc7ed3f38659867690', 97856, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '07fdde97ca47e9aaf8dc1725ceeda5df0439af35725940c6563fd6555915b87e', - 240716, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '7811b1740d517951d754703f7f774650069b946f991b21f9c0d72ced01ef9d72', - 211240, - ), }; return googleFontsTextStyle( @@ -9541,20 +9352,6 @@ class PartS { '7cdf8ece95dadb38933954dd4e6cef04de277276d249d222532cf336e6ded8a4', 100620, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '06ab104cd6aa3a1d28208c39d0efcfa4d8dd07619615399735cc22b94834ed58', - 242784, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4f22efbeb7381638d5599c5a210a42f62f61fcfec873d6b6c1317be74458e6c0', - 216284, - ), }; return googleFontsTextStyle( @@ -9895,20 +9692,6 @@ class PartS { 'f147a53abaa2d6face49e08df607ee89c1331220be62a752233919799683b23d', 39024, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bfed12543978540609f746a50d9513adda80348e483a4a8e7d5f5d2dbbbde88d', - 59208, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '96bc8c4299dbe2952c38730da7a96729e95a2387ae4ed78f2add60b02c8accff', - 60752, - ), }; return googleFontsTextStyle( @@ -10125,13 +9908,6 @@ class PartS { '6572f110f4b0b9546ffc361e46c0c8e6b1fb7bab6d3bc6fabb22fb06519c1f00', 62908, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9923edd345ee73284d6497c64d0b77db6d1bb919e23e232bae3612c4203fac4c', - 133320, - ), }; return googleFontsTextStyle( @@ -10355,13 +10131,6 @@ class PartS { '43614ed07b3eb6008b6eb978688312cb962103b1a627153a4305bd1bcb256769', 46204, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'aaf5fbcac6f1de3811a1e57a50b223188d0d70f6dabd8a32f8a5b964f447c668', - 90500, - ), }; return googleFontsTextStyle( @@ -10662,20 +10431,6 @@ class PartS { 'bac5d9f66d86494401928472dc6feba80a9cea0dc38b415341004c63a273a97b', 57256, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4cf699319f62a0cce14db5041c854387deaacbcbdb964391f3648d9407ef3003', - 129248, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '5ae8cbe6237135483049f558fbc6dbfe6800c8178bfe8a6d4b6d2c00df61985b', - 138268, - ), }; return googleFontsTextStyle( @@ -10868,20 +10623,6 @@ class PartS { '7a75669d3e8aea35565e21580e480ef0bb31a36af89733413991d3d44ef1b082', 101500, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4a2b893bbf7d20c0b90627f15f03917a3456cc187ed98c12506f1d2c8b91b2ad', - 191672, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '09e2a85716d602b6932473ee195c89f5a44ff98b8582d691ea86532c13c116ff', - 158740, - ), }; return googleFontsTextStyle( @@ -11074,20 +10815,6 @@ class PartS { '0506f2ce0c921668a975ef371774f8fafc45b9fb8a115f110639228db90836ed', 207896, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '05cfbf14238692d64b0f3ba7fd00c0de78cfd78b9bd5bbbeebb6fd39893d39a9', - 401668, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd50aef4890c29f39593058e80d00976b812ec7fd0452f68ca1754cf38d24e99b', - 350772, - ), }; return googleFontsTextStyle( @@ -11280,20 +11007,6 @@ class PartS { '0ccc09292baf067c86fc11d015ddab0008b94a698b4ad1edffe17067ce408318', 183704, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e32ff466798fd80cf57e7e0340b4d5e0a73bf39a9eef13aad66a64bda5024b8e', - 789820, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '3dd8e154b9b94940d3d4a6958f8d828284e6a58cfebf446a953bd28d7293f2be', - 785624, - ), }; return googleFontsTextStyle( @@ -11409,13 +11122,6 @@ class PartS { '22eb3cc87edf0bd73cd7b79336429dd0035eaf2c9a9fe83c6c7e11b825116926', 69284, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '016cf2b2449b6f3c0fb364843a717f78ac33244ee0722bb9a01b8cbce0e7d674', - 108252, - ), }; return googleFontsTextStyle( @@ -11719,13 +11425,6 @@ class PartS { 'ef937bc495c5862713d361129cff63c3d3199542c1249560f978513ff110b158', 76124, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c7206bed3486849fbccd8cace8659b01ed5908fe6940eb9aafc98190d2bd277e', - 226620, - ), }; return googleFontsTextStyle( @@ -12739,13 +12438,6 @@ class PartS { '6386aed13c1db592810b93bf4a9def4d6356bd2d98245792ef3a15335a52d5b2', 51444, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7b2d67fce62e0680fe84c71a0e97c87c3b7d57c0327b817fe43f397a44917898', - 135968, - ), }; return googleFontsTextStyle( @@ -12896,20 +12588,6 @@ class PartS { '979697f3bfa5f2b4ed11a6e99e22eca98817dec02131993de0609cc00704a65d', 37488, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '37f69168bd4a9bcdca6751ab85afb724ded4331194a4432e9fd1c73cd2c70b94', - 92036, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '45315e9b776a85f949e4d5c4ca05b27e6c7779560c944f37edecd6e494911654', - 90856, - ), }; return googleFontsTextStyle( @@ -13923,13 +13601,6 @@ class PartS { 'd8c0f95a248233e4592bab9786a8897f2a230f5bfa1b4bf910d89e5fe9a01ead', 162680, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a0f71a9536cdd910e60e9ba911624f98f4904077dd5e280c4c908936eb9d106e', - 275804, - ), }; return googleFontsTextStyle( @@ -15869,13 +15540,6 @@ class PartS { '2a362f62b01c4c950b67906ed009e9a5bd2491590063e31e97d7e10f503904f4', 52844, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f0187a8c27083a485f20d6c6d9a6ee89b3ca165db484b37a03adb11325cc9070', - 118036, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_t.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_t.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_t.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_t.dart index 59e9d9a8c154..c08be3fe6408 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_t.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_t.dart @@ -74,13 +74,6 @@ class PartT { '5e8e51836b44d06d2826c43433a7abd6d2fa8be43f74ee3319ffb1416a4e5ab5', 93012, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '138d517367ebed3d4899ff11e2a7e72c2c5f53dfb57f8e076b0e7f0b3d620428', - 157472, - ), }; return googleFontsTextStyle( @@ -196,13 +189,6 @@ class PartT { 'c0cdb36a360ca31c0f6e409f21c54022077daacd19d0222ad50666228abb07da', 94848, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ae92088fb84de6e2bfd06b4652195bcdd104bcd0723615fc75aab3d73baf45c4', - 161620, - ), }; return googleFontsTextStyle( @@ -1311,20 +1297,6 @@ class PartT { 'dc42993d1ef697641a118f972d55789fe4338eb4aa5e07d328e96a8a92bdb0a9', 31736, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'd221fad99ceaa06b8824e2a8706871816ddf8f591ff039b93220033dcc4ae133', - 63988, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2ef8a11b2a6acd0ed8b587f0b17c5430c3c8d05d5986f7d14a752411117f2328', - 65908, - ), }; return googleFontsTextStyle( @@ -1440,13 +1412,6 @@ class PartT { '81a9580b9ee15cafb8b0772c73e801aa78ead5b2fd5c2b9e6ee19b9eccf4cf44', 153920, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b77ea1e6a7b291b602065071ee46d09e0c224d0d5491af86ca06d8383a0e4af1', - 272568, - ), }; return googleFontsTextStyle( @@ -1569,13 +1534,6 @@ class PartT { '3227618ccb0a282fb74d5e0582c76a8f4da695f89ae982fe032b3ec1ab21764c', 66468, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'df5af3c8b4538478b8d43e5b8cf4a22444ac8623675518ec6f04ec4684fd10d9', - 147384, - ), }; return googleFontsTextStyle( @@ -2130,20 +2088,6 @@ class PartT { '2801cd7d75c41425bf4eb55562455ad07344aed01792011e7c3bdbffb1ff586e', 84200, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6e2a569e5f488a292677889bfb9977a75f3a0c89fb5192786a747b2681ab219e', - 284148, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ad90bbd6a9f364262ce534d22085f7f66dd8e0e565debe4233c5f819c0664b1d', - 287848, - ), }; return googleFontsTextStyle( @@ -2663,13 +2607,6 @@ class PartT { 'edfd86ac426704aff93479aee0403e450cc7c57f750708878faf0575ed690ae0', 151336, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '009eb8bab683c101ad656eccb516bd9d44db5af34242d761f1e05062d8a05a53', - 644176, - ), }; return googleFontsTextStyle( @@ -2872,13 +2809,6 @@ class PartT { 'e61328500904dcde68508873f20dcc614ee00af98ff8580ff5ff6651c461fa09', 89348, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e04e0f1d34e95de9565d860e1101e8ae6c5aa79c52705d0eb2f2ef6d7dc9867f', - 555372, - ), }; return googleFontsTextStyle( @@ -2966,13 +2896,6 @@ class PartT { '529da4d79bfcc56197c7a3ca84fbe043fb0289865f6ab12358eaeaf82011015d', 174756, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5038fe39616e4a8302a26fde6c88f4c6e69460a8b424fbb8cdc780e27299acd5', - 1047576, - ), }; return googleFontsTextStyle( @@ -3060,13 +2983,6 @@ class PartT { '87d9bc13d526bf2486164ba4cc00e87f5b17e9e19ad77dc151a32c7ee1786302', 59624, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7862bb55139aaf85a6050b7ab3dda249a5d30f6ba9884cc8ef760ace57b5f945', - 216196, - ), }; return googleFontsTextStyle( @@ -4883,20 +4799,6 @@ class PartT { '0f995f8492c6f78fd055eee073ec85d72385884306bf71aa3fb6bc0417bbcaa6', 64112, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'efd7801390fb5a49088d1327e57aa06f99225eb1424ec27369e460fe7b3851da', - 157688, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '9028126d84de3911794d4e85b04ccbaf633c7c978b17581111c87c924a0a5f21', - 164188, - ), }; return googleFontsTextStyle( @@ -5500,13 +5402,6 @@ class PartT { '8b3915d8de2f6d5145ce837576818e3787acc542dfe32f3345a598246c7029c4', 60344, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ffe1788b8a9940f55487e8a89d15e985fe5c77d0b94288078b3701f1436e9ba0', - 211952, - ), }; return googleFontsTextStyle( @@ -5838,13 +5733,6 @@ class PartT { 'de493306dabf4f2a527028de8dbb0816af5a61debd35c4c587970a0064f92cc8', 130556, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'a5a6e5280619c9dbc5cf28a07efb82e684974bce0db190b7da60d38453b4692c', - 704108, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_u.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_u.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_u.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_u.dart index 0975917c8eba..a65e863d1434 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_u.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_u.dart @@ -482,20 +482,6 @@ class PartU { '0d5ff7e2396e0b21caf2c02b785dff70eeb9e333d4b70fe91d2895f0f2d7e0ab', 247912, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '998bbb2990149e08a9defb91d88fcd1d79ff71071940c7f100489c4f5eb625e0', - 641524, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'b2818541421b2c3584b21887ab68a1206c9576f7416e3510b3a901ac5c4f5fe6', - 677320, - ), }; return googleFontsTextStyle( @@ -632,20 +618,6 @@ class PartU { 'a28c516b044902577d4dfd449666ed7cae623f4101840acb970fe2d464ce4fdc', 114048, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4b122dad6df6716f91383fba15fa40c44fc7bbe189036933d1cff198a66a39fa', - 168876, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'e45fbbfdd75386a97bcfeed83c4f00f58c629599ff174e7fa79b7eeacf91cd94', - 177168, - ), }; return googleFontsTextStyle( @@ -956,13 +928,6 @@ class PartU { 'b0e4f26479f435b2b37e0f39eb1f1c2716607b8646c599b3d9bbe78cad682012', 395768, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e1f2ce27856f6897011ed3185a963f5f2beb7bcc1154e7b75ca52115ca8e0528', - 732488, - ), }; return googleFontsTextStyle( @@ -2067,20 +2032,6 @@ class PartU { '1a7260ed2508da15352365a2e855c4ffe6dba4acb152c648c6cf9f31f25063f3', 42104, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '54f9d0ea68c3bf5eff9ac11ef5f3d13e7d91c8826e585137952bd07dfc9c4670', - 81808, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '512dc8a84cede840dcd7a7d2e62ea6e786bd4f5d29183f45269e5a612141cffa', - 84260, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_v.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_v.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_v.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_v.dart index c5a3cd844829..90a6cdebe5f3 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_v.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_v.dart @@ -422,13 +422,6 @@ class PartV { 'ac7e5c6d0c6462e41cd53725537ac503e3212b7ea63140add4f6fcc12811b126', 64956, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7595d3406fb91dbe73468c702a1e3cbf7f89ea9f9041ea31a9d638164c84a9a9', - 103004, - ), }; return googleFontsTextStyle( @@ -659,13 +652,6 @@ class PartV { '5988777b032798a770ee0cde7621494e64dd69ca7b2f0351cd71c051b83df6b1', 105400, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '90d653e8d6e39aaf536a0bbd961c39a7b75e5fb947a6a8442dc19ada13789039', - 202772, - ), }; return googleFontsTextStyle( @@ -816,20 +802,6 @@ class PartV { '216dca4e47f8c00981dfdedbab3d0f8970ebca933f47daf9c2582077466ef25c', 70036, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'bc5f4a7c2c202b324650d1aaadcdbc2d74c875f792a847c7d18827c9d730679f', - 103708, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'b5c400b4b79bd61498fb338ea63ecdab2e890daeebdf28fe6667c2bd8998496c', - 105876, - ), }; return googleFontsTextStyle( @@ -1377,20 +1349,6 @@ class PartV { '04601ce5dc8030bf4ef4ccee1b536df2f392e2b107497515dcd4c8c75df261a5', 160964, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '36d0180b82211c678528d1d5e03f5b69e4c2353d673b0fa4b2bcce9c82c926df', - 188660, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '0f2823c7ce82d6eb54b8a5db69b2e5e8e23e6a1688485bc1513e446ebd1a89be', - 236896, - ), }; return googleFontsTextStyle( @@ -2011,20 +1969,6 @@ class PartV { '39578441644f2840924e50445ec06f47007a86b7775a20ee53a117c2a75ddec6', 227860, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'e4e271e77131f4e22fc944b120383972c924c7fb15f45bf76dabd8f9d43bd176', - 370248, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd9d5a41c2e67d578e75e0050b174c2714d4f46e9a26f988f30aac113596dee31', - 363736, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_w.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_w.dart similarity index 96% rename from packages/google_fonts/lib/src/google_fonts_parts/part_w.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_w.dart index 206a91df8efe..496737887958 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_w.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_w.dart @@ -885,13 +885,6 @@ class PartW { '8dbdd4de5f3908c9a960d635f0b64574bd205e0bc2b3f30e7e9cd1f87a43cf76', 31856, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c5b9d15d7e24918eb09deb445a34ce905c979f1d41ba72cce75d28ab19aaa4d4', - 94228, - ), }; return googleFontsTextStyle( @@ -1425,20 +1418,6 @@ class PartW { 'bee958c3be1c408067d77120f0dd7c01d91ff7c557133e49c6b9ba84a668c787', 120528, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '4cb93d4d5b4987c96ed0659291298e9581f65d6896d0b021ebc3fd2bc46be104', - 303900, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '2cc6571574a125068462f8388e9344f7dc39447adb84925f0d36b0be8f48c4a2', - 308060, - ), }; return googleFontsTextStyle( @@ -1617,20 +1596,6 @@ class PartW { 'b2d7833a0a6d2eebc974fa64bdc1dabbed379dc1b647efbaa44a60e411e86006', 46924, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '583faa182af89b6c314296f15f2af3160c4efaefd303e966d9f9aa8ef058eeb3', - 97084, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '18ca5e9704571e2c10542a44bd472674b2b888d8786e497e64e2377e6cc1caec', - 100356, - ), }; return googleFontsTextStyle( @@ -1882,20 +1847,6 @@ class PartW { '70f6ae9854685b5e10aa2e9e41e6ac9fb5e2987cf0e3a86b67ebedca1ce3c602', 61536, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7fef56bab035d9c959bdfd5c347f9a282fcd89fe7be6336793a668add9df18bb', - 98512, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '350d182650c58bc120da1a62ac0387622e21e3a8d1dce499cafee1819a582cd5', - 90152, - ), }; return googleFontsTextStyle( @@ -2011,13 +1962,6 @@ class PartW { '25219be9ef07505d0d2afd09be28a6a68cd4ff9b90e40cf79a287801045bd75b', 83840, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '64d8cd3ab0843da2cb7c3855be9450f25bda84cadaa4aa183a5014a8c21e2626', - 142768, - ), }; return googleFontsTextStyle( @@ -2168,20 +2112,6 @@ class PartW { '6ef1432e62154d09328ffaff7857de9b62fd7d2cf0cdbbc165025760e03ca484', 46364, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'b8186c8aebf88232f2ebb377c10b5f1c6661d4357a1b8e9871d09d1cc9c6792c', - 141488, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'd34fe5dbba0421753da076cfbd3330e08e6cc10ae0609b13a57845e8deec89d9', - 78124, - ), }; return googleFontsTextStyle( @@ -2388,20 +2318,6 @@ class PartW { 'f07791be412574fabdf29eb1f49fdf1239884838717c011e53b5ee7d026acd94', 111624, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '6539a439e75dde39337bd3dfb850c6adbff61eb790f4027a78e82abfd5077fb2', - 227408, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '39de0247e2e747eb5cdbdea319a00566617a07bc3ca8fa0bd404d72039948996', - 220072, - ), }; return googleFontsTextStyle( @@ -2489,13 +2405,6 @@ class PartW { '1f233936199d83bc05cbe9713630c83e225dbe81f1315b6343ef79b7d8daf7ab', 19884, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'c210552504f4ddb257e443abd215df9b456895133d306492b2bf34ea3815c23b', - 30044, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_x.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_x.dart similarity index 100% rename from packages/google_fonts/lib/src/google_fonts_parts/part_x.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_x.dart diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_y.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_y.dart similarity index 97% rename from packages/google_fonts/lib/src/google_fonts_parts/part_y.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_y.dart index b4a59b477a69..e0f87da0a946 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_y.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_y.dart @@ -81,13 +81,6 @@ class PartY { '1994ea6c081ab5ab056be29b2529f37ed022f87e6e29c6cf821823a0538414c5', 266040, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '42a14ca22847e51f3dd9e3bb3491a0fc97c4d91b0c106a9539f631133d7dce95', - 460528, - ), }; return googleFontsTextStyle( @@ -210,13 +203,6 @@ class PartY { 'fef05416ad93337f8e70696f696dad79de71f8bf6bef53a93817da7a5d0e52ff', 75328, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '41a95013ef50f80347e46d08c848e0db2ecaa997c6753c6fdf8f64b22989c16b', - 122812, - ), }; return googleFontsTextStyle( @@ -1446,20 +1432,6 @@ class PartY { 'ac1d276ccf975f60e9987663aefa260ef4c9d5343b33172d06b2233968d50b17', 147788, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7ab169803117eb26b73286b6ddf420830dae281f1ace9f5c7848195105407bd1', - 210932, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '49f0b3911716fe3e4d15747477e06e5554ad8304e1edbf0ac67357b9e7c42172', - 267672, - ), }; return googleFontsTextStyle( @@ -1666,20 +1638,6 @@ class PartY { '8797293be675c54aae2cc4b8c58763601aa0ae0d6ab2a78fd35447d0b82fdf92', 138724, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '35b5210f4564fd20e77d04dfb573e3347e57fd6dead2cd2db894fc9b0f763e83', - 260552, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'ed8c4f64bf9c2cac0c7e83d1080537c5f67ea8113085b570549f10c6cc7c116f', - 279604, - ), }; return googleFontsTextStyle( @@ -1886,20 +1844,6 @@ class PartY { '47daab37d18cc8ad35f1434c289de3fc36069aacd91e25cdd1051cce4e92f410', 129784, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'f9d4e5a337ca271805cc0ba1328ee908e84b55c71ec81782af37945fdc908046', - 243152, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'cbece702d53acb78947bb7e83d2375ec4beff9ecb0ab47283f9b0996d055d898', - 259312, - ), }; return googleFontsTextStyle( @@ -2106,20 +2050,6 @@ class PartY { 'ad3f8871edd0d38c6c74f248176ffda569c0727587a5b02ad6a642ee64e0203d', 130636, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - 'ee2a8a6e5e4409d999c592312bf2e947b9d635e88a7448d79423c761cd5928c7', - 245564, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '4a4bba6c236c490acdd046baab1cdce7e9f43d68bebd5f43bcd918f491a14114', - 261760, - ), }; return googleFontsTextStyle( @@ -2263,13 +2193,6 @@ class PartY { '90bb486232e946d3964c9cd6ac5819d5a88d2060390ee1027806278ac8f6902e', 103188, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '8d93afda8eac56dd3e5f6a911022549a259c6b5103b2505be16e364c55da2ce8', - 199816, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/lib/src/google_fonts_parts/part_z.g.dart b/packages/google_fonts/lib/src/google_fonts_parts/part_z.dart similarity index 98% rename from packages/google_fonts/lib/src/google_fonts_parts/part_z.g.dart rename to packages/google_fonts/lib/src/google_fonts_parts/part_z.dart index 1f89e0488408..8667a5228277 100644 --- a/packages/google_fonts/lib/src/google_fonts_parts/part_z.g.dart +++ b/packages/google_fonts/lib/src/google_fonts_parts/part_z.dart @@ -548,20 +548,6 @@ class PartZ { '8364098581b65b5ccc553a887921f9c66e2081288349209078267f74a271241a', 61424, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '9dedf69df62562ac3d3b79ea427cb65a9948617c84081350107e7fce41b5edf2', - 229240, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '53d5a2c2d76ebb4bb0315ba9d2307311b6f7f8bbfe45efed20faae925cc0748b', - 237360, - ), }; return googleFontsTextStyle( @@ -754,20 +740,6 @@ class PartZ { '472a58e7fc58a9c141476cd38be0980e6eaf49556492a3c341dd7b1ec5821529', 60492, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '7bfb5dcf49155bf96a2d2b8573f797429dcf3db5f6031457cc76cc93d0dca232', - 116888, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - '81e166ad22857f0d9f0710811dead125e6f99a8a0c274a7fe546202f9fc4341f', - 118312, - ), }; return googleFontsTextStyle( @@ -960,20 +932,6 @@ class PartZ { '9e4561591284a2bcdd6ab7ef6a596601bcf773e16fa72618580870468def7380', 61456, ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.normal, - ): GoogleFontsFile( - '5471f245f915313d088a38b1db947d102ece6f7eee1d27420e60cc471393a566', - 118552, - ), - const GoogleFontsVariant( - fontWeight: FontWeight.w400, - fontStyle: FontStyle.italic, - ): GoogleFontsFile( - 'bcc4500da60e1b1d4b91bfe67b7d583349f89c492053345d90cb3a8850bf48bf', - 121952, - ), }; return googleFontsTextStyle( diff --git a/packages/google_fonts/pubspec.yaml b/packages/google_fonts/pubspec.yaml index 3c4289aa6795..d2aec347e413 100644 --- a/packages/google_fonts/pubspec.yaml +++ b/packages/google_fonts/pubspec.yaml @@ -2,7 +2,7 @@ name: google_fonts description: A Flutter package to use fonts from fonts.google.com. Supports HTTP fetching, caching, and asset bundling. repository: https://github.com/flutter/packages/tree/main/packages/google_fonts issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+google_fonts%22 -version: 7.0.0 +version: 7.0.1 environment: sdk: ^3.9.0 @@ -22,7 +22,7 @@ dev_dependencies: mustache_template: 2.0.0 path_provider_platform_interface: ^2.0.1 plugin_platform_interface: ^2.1.7 - protobuf: ">=2.0.1 <5.0.0" + protobuf: ^6.0.0 test: ^1.19.5 topics: