weight property

FontWeight get weight

Implementation

l.FontWeight get weight {
  switch (this) {
    case FontWeight.regular:
      return l.FontWeight.w400;
    case FontWeight.medium:
      return l.FontWeight.w500;
    case FontWeight.semibold:
      return l.FontWeight.w600;
  }
}