isNumeric method

bool isNumeric(
  1. dynamic string
)

Implementation

bool isNumeric(string) => num.tryParse(string) != null;