ShapeEntity_ShapeArgs constructor

ShapeEntity_ShapeArgs({
  1. String? d,
})

Implementation

factory ShapeEntity_ShapeArgs({
  $core.String? d,
}) {
  final _result = create();
  if (d != null) {
    _result.d = d;
  }
  return _result;
}