SetOptionsOperation constructor Null safety

SetOptionsOperation(
  1. String? inflationDestination,
  2. int? clearFlags,
  3. int? setFlags,
  4. int? masterKeyWeight,
  5. int? lowThreshold,
  6. int? mediumThreshold,
  7. int? highThreshold,
  8. String? homeDomain,
  9. XdrSignerKey? signer,
  10. int? signerWeight
)

Implementation

SetOptionsOperation(
    String? inflationDestination,
    int? clearFlags,
    int? setFlags,
    int? masterKeyWeight,
    int? lowThreshold,
    int? mediumThreshold,
    int? highThreshold,
    String? homeDomain,
    XdrSignerKey? signer,
    int? signerWeight) {
  this._inflationDestination = inflationDestination;
  this._clearFlags = clearFlags;
  this._setFlags = setFlags;
  this._masterKeyWeight = masterKeyWeight;
  this._lowThreshold = lowThreshold;
  this._mediumThreshold = mediumThreshold;
  this._highThreshold = highThreshold;
  this._homeDomain = homeDomain;
  this._signer = signer;
  this._signerWeight = signerWeight;
}