FeePool constructor

FeePool({
  1. Iterable<DecCoin>? communityPool,
})

Implementation

factory FeePool({
  $core.Iterable<$2.DecCoin>? communityPool,
}) {
  final _result = create();
  if (communityPool != null) {
    _result.communityPool.addAll(communityPool);
  }
  return _result;
}