tryGetBigInt method
Tries to convert the element at index (or fallback indices) to BigInt.
Implementation
BigInt? tryGetBigInt(
int index, {
List<int>? alternativeIndices,
dynamic innerMapKey,
int? innerIndex,
BigInt? defaultValue,
ElementConverter<BigInt>? converter,
}) => ConvertObjectImpl.tryToBigInt(
_firstForIndices(index, alternativeIndices: alternativeIndices),
mapKey: innerMapKey,
listIndex: innerIndex,
defaultValue: defaultValue,
converter: converter,
debugInfo: {
'index': index,
if (alternativeIndices != null && alternativeIndices.isNotEmpty)
'altIndexes': alternativeIndices,
},
);