breakpoint property

int breakpoint

Implementation

int get breakpoint {
  switch (this){
    case DeviceType.mobile:return 600;
    case DeviceType.tablet:return 768;
    default: return 889;
  }
}