fromInt method

Color fromInt(
  1. dynamic strColor
)

Implementation

Color fromInt(dynamic strColor) {
  myLogAll('fromInt');
  int intColor = getInt(strColor);
  //print('=== intColor is $intColor');
  return Color(intColor);
}