MoneyBeamAccountPayload constructor

MoneyBeamAccountPayload({
  1. String? accountId,
})

Implementation

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