Input$AddressKey constructor

Input$AddressKey({
  1. String? address,
  2. int? atCheckpoint,
  3. String? name,
  4. int? rootVersion,
})

Implementation

factory Input$AddressKey({
  String? address,
  int? atCheckpoint,
  String? name,
  int? rootVersion,
}) => Input$AddressKey._({
  if (address != null) r'address': address,
  if (atCheckpoint != null) r'atCheckpoint': atCheckpoint,
  if (name != null) r'name': name,
  if (rootVersion != null) r'rootVersion': rootVersion,
});