bigInt static method

Tuple2<String, String> bigInt([
  1. bool nullable = false
])

Implementation

static Tuple2<String, String> bigInt([bool nullable = false]) {
  String d;
  if (nullable) {
    d = '$ph == null ? null : $ph is BigInt ? $ph : BigInt.from($ph)';
  } else {
    d = '$ph is BigInt ? $ph : BigInt.from($ph)';
  }
  return Tuple2(ph, d);
}