ColScreen.inDevice constructor

ColScreen.inDevice({
  1. Col? mobile,
  2. Col? tablet,
  3. Col? desktop,
})

Will set width BsCol in mobile, tablet, desktop screen including

Implementation

factory ColScreen.inDevice({Col? mobile, Col? tablet, Col? desktop}) {
  return ColScreen(sm: mobile, md: tablet, lg: desktop);
}