SolutionHandle constructor

SolutionHandle({
  1. String? handleId,
  2. String? solutionType,
  3. Int64? createdAtMs,
  4. String? state,
})

Implementation

factory SolutionHandle({
  $core.String? handleId,
  $core.String? solutionType,
  $fixnum.Int64? createdAtMs,
  $core.String? state,
}) {
  final result = create();
  if (handleId != null) result.handleId = handleId;
  if (solutionType != null) result.solutionType = solutionType;
  if (createdAtMs != null) result.createdAtMs = createdAtMs;
  if (state != null) result.state = state;
  return result;
}