FA12Parameters constructor
Implementation
factory FA12Parameters({
$core.String? entrypoint,
$core.String? from,
$core.String? to,
$core.String? value,
}) {
final _result = create();
if (entrypoint != null) {
_result.entrypoint = entrypoint;
}
if (from != null) {
_result.from = from;
}
if (to != null) {
_result.to = to;
}
if (value != null) {
_result.value = value;
}
return _result;
}