copyWith method

SetAccountTtl copyWith({
  1. AccountTtl? ttl,
})

Implementation

SetAccountTtl copyWith({
  AccountTtl? ttl,
}) => SetAccountTtl(
  ttl: ttl ?? this.ttl,
);