AddProjectGrantResponse constructor

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

Implementation

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