index static method

IconData index(
  1. int index
)

Implementation

static IconData index(int index){

  if(index == null || index >= _values.length || index < 0){
    return Icons.square_foot_rounded;
  }

  return _values[index];

}