ImportDataSuccessProjectGrantMember constructor

ImportDataSuccessProjectGrantMember({
  1. String? projectId,
  2. String? grantId,
  3. String? userId,
})

Implementation

factory ImportDataSuccessProjectGrantMember({
  $core.String? projectId,
  $core.String? grantId,
  $core.String? userId,
}) {
  final _result = create();
  if (projectId != null) {
    _result.projectId = projectId;
  }
  if (grantId != null) {
    _result.grantId = grantId;
  }
  if (userId != null) {
    _result.userId = userId;
  }
  return _result;
}