Pool constructor

Pool({
  1. String? notBondedTokens,
  2. String? bondedTokens,
})

Implementation

factory Pool({
  $core.String? notBondedTokens,
  $core.String? bondedTokens,
}) {
  final _result = create();
  if (notBondedTokens != null) {
    _result.notBondedTokens = notBondedTokens;
  }
  if (bondedTokens != null) {
    _result.bondedTokens = bondedTokens;
  }
  return _result;
}