Converts a gwei string value to wei.
Example:
EthUnit.gwei('1'); // 1 gwei = 10^9 wei
static BigInt gwei(String value) { return _parseDecimal(value, 9); }