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