CompilationInfo constructor

CompilationInfo({
  1. List<int>? programId,
  2. String? sdk,
  3. List<int>? creatorId,
})

Implementation

factory CompilationInfo({
  $core.List<$core.int>? programId,
  $core.String? sdk,
  $core.List<$core.int>? creatorId,
}) {
  final _result = create();
  if (programId != null) {
    _result.programId = programId;
  }
  if (sdk != null) {
    _result.sdk = sdk;
  }
  if (creatorId != null) {
    _result.creatorId = creatorId;
  }
  return _result;
}