Exchange constructor

Exchange({
  1. List<int>? id,
  2. PublicKey? pubkey,
})

Implementation

factory Exchange({
  $core.List<$core.int>? id,
  $0.PublicKey? pubkey,
}) {
  final result = create();
  if (id != null) result.id = id;
  if (pubkey != null) result.pubkey = pubkey;
  return result;
}