FA12Parameters constructor

FA12Parameters({
  1. String? entrypoint,
  2. String? from,
  3. String? to,
  4. String? value,
})

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