supportedFormFactors property

Set<FormFactors> supportedFormFactors

Implementation

Set<FormFactors> get supportedFormFactors {
  return {
    FormFactors.mobile,
    if (breakpoints?.tablet != null) FormFactors.tablet,
    if (breakpoints?.desktop != null) FormFactors.desktop,
  };
}