Base16Data.unsafe constructor

Base16Data.unsafe(
  1. String from
)

Implementation

factory Base16Data.unsafe(String from) {
  try {
    return Base16Data.validated(from);
  } on Exception catch (err) {
    throw ArgumentError('Invalid Base-16 string: $err');
  }
}