FragmentError constructor
FragmentError({
- FragmentErrorType? errorType,
- String? fragmentId,
- String? detail,
Implementation
factory FragmentError({
FragmentErrorType? errorType,
$core.String? fragmentId,
$core.String? detail,
}) {
final $result = create();
if (errorType != null) {
$result.errorType = errorType;
}
if (fragmentId != null) {
$result.fragmentId = fragmentId;
}
if (detail != null) {
$result.detail = detail;
}
return $result;
}