CallOptions constructor
CallOptions({})
Implementation
CallOptions({
this.progress,
this.receiveProgress,
this.timeout,
this.discloseMe,
String? transactionHash,
String? pptScheme,
String? pptSerializer,
String? pptCipher,
String? pptKeyId,
Map<String, dynamic>? custom,
}) {
this.pptScheme = pptScheme;
this.pptSerializer = pptSerializer;
this.pptCipher = pptCipher;
this.pptKeyId = pptKeyId;
if (custom != null) {
this.custom.addAll(custom);
}
if (transactionHash != null) {
this.transactionHash = transactionHash;
}
}