AddProjectGrantResponse constructor

AddProjectGrantResponse({
  1. String? grantId,
  2. ObjectDetails? details,
})

Implementation

factory AddProjectGrantResponse({
  $core.String? grantId,
  $8.ObjectDetails? details,
}) {
  final $result = create();
  if (grantId != null) {
    $result.grantId = grantId;
  }
  if (details != null) {
    $result.details = details;
  }
  return $result;
}