BigIntKeyValueUseCase constructor

BigIntKeyValueUseCase({
  1. required String key,
  2. BigInt? defaultValue,
})

Implementation

BigIntKeyValueUseCase({
  required String key,
  BigInt? defaultValue,
}) : super(
        key: key,
        defaultValue: defaultValue,
        converter: BigIntDefaultConverter.converter,
      );