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