FragmentError constructor

FragmentError({
  1. FragmentErrorType? errorType,
  2. String? fragmentId,
  3. 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;
}