fontWeight property

FontWeight get fontWeight

Implementation

FontWeight get fontWeight {
  return switch (this) {
    solid || tonal || text || softText || filledText => FontWeight.w400,
    outline || softOutline || filledOutline => FontWeight.w300,
  };
}