StrikeAccountPayload constructor

StrikeAccountPayload({
  1. String? holderName,
})

Implementation

factory StrikeAccountPayload({
  $core.String? holderName,
}) {
  final $result = create();
  if (holderName != null) {
    $result.holderName = holderName;
  }
  return $result;
}