Chain constructor
Chain({
- ChainRef? type,
Implementation
factory Chain({
ChainRef? type,
}) {
final result = create();
if (type != null) result.type = type;
return result;
}
factory Chain({
ChainRef? type,
}) {
final result = create();
if (type != null) result.type = type;
return result;
}