firstIntValue static method

int? firstIntValue(
  1. List<Map<String, Object?>> list
)

helper to get the first int value in a query Useful for COUNT(*) queries

Implementation

static int? firstIntValue(List<Map<String, Object?>> list) =>
    utils.firstIntValue(list);