Anything constructor

Anything({
  1. String? kind,
  2. List<int>? body,
})

Implementation

factory Anything({
  $core.String? kind,
  $core.List<$core.int>? body,
}) {
  final _result = create();
  if (kind != null) {
    _result.kind = kind;
  }
  if (body != null) {
    _result.body = body;
  }
  return _result;
}