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