getFontWeight function

FontWeight getFontWeight(
  1. int value
)

Implementation

FontWeight getFontWeight(int value) {
  switch(value){
    case 0:
      return FontWeight.normal;
    case 1:
      return FontWeight.bold;
    default:
      return FontWeight.normal;
  }
}