displayName property

String get displayName

Get full display name for the breakpoint

Implementation

String get displayName {
  switch (this) {
    case FSBreakpoint.xs:
      return 'Extra Small';
    case FSBreakpoint.sm:
      return 'Small';
    case FSBreakpoint.md:
      return 'Medium';
    case FSBreakpoint.lg:
      return 'Large';
    case FSBreakpoint.xl:
      return 'Extra Large';
    case FSBreakpoint.xxl:
      return 'Double Extra Large';
  }
}