SignDataRequestObjectBuilder constructor

SignDataRequestObjectBuilder({
  1. String? message,
  2. String? privateKey,
  3. String? passphrase,
  4. KeyOptionsObjectBuilder? options,
})

Implementation

SignDataRequestObjectBuilder({
  String? message,
  String? privateKey,
  String? passphrase,
  KeyOptionsObjectBuilder? options,
})  : _message = message,
      _privateKey = privateKey,
      _passphrase = passphrase,
      _options = options;