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;
}