SolutionHandle constructor
SolutionHandle(
{ - String? handleId,
- String? solutionType,
- Int64? createdAtMs,
- 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;
}