OfflineToken_Data constructor

OfflineToken_Data({
  1. Int64? id,
  2. List<int>? address,
  3. List<int>? accountId,
  4. Int64? value,
  5. String? currency,
})

Implementation

factory OfflineToken_Data({
  $fixnum.Int64? id,
  $core.List<$core.int>? address,
  $core.List<$core.int>? accountId,
  $fixnum.Int64? value,
  $core.String? currency,
}) {
  final $result = create();
  if (id != null) {
    $result.id = id;
  }
  if (address != null) {
    $result.address = address;
  }
  if (accountId != null) {
    $result.accountId = accountId;
  }
  if (value != null) {
    $result.value = value;
  }
  if (currency != null) {
    $result.currency = currency;
  }
  return $result;
}