ResultOfHash constructor

ResultOfHash(
  1. {@required String hash}
)

Implementation

ResultOfHash({
  @required String hash,
}) {
  _hash = ArgumentError.checkNotNull(hash, 'ResultOfHash hash');
}