Input$ObjectKey constructor

Input$ObjectKey({
  1. required String address,
  2. int? atCheckpoint,
  3. int? rootVersion,
  4. int? version,
})

Implementation

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