asInt static method

int? asInt(
  1. dynamic value
)

Implementation

static int? asInt(dynamic value) {
  return asT<int>(value, method: 'asInt');
}