getInteger function

int getInteger(
  1. String text
)

Implementation

int getInteger(
    String text
    )
{
    return int.parse( text );
}