TableCellNode constructor

TableCellNode({
  1. String? type,
  2. TextSublayerNode? text,
  3. num? rowIndex,
  4. num? columnIndex,
  5. String? toString$,
  6. TableNode? parent,
  7. num? height,
  8. num? width,
  9. Object? fills,
  10. Object? fillStyleId,
  11. Future<void> setFillStyleIdAsync(
    1. String
    )?,
})

Implementation

factory TableCellNode({
  _i2.String? type,
  _i3.TextSublayerNode? text,
  _i2.num? rowIndex,
  _i2.num? columnIndex,
  _i2.String? toString$,
  _i3.TableNode? parent,
  _i2.num? height,
  _i2.num? width,
  _i2.Object? fills,
  _i2.Object? fillStyleId,
  _i2.Future<void> Function(_i2.String)? setFillStyleIdAsync,
}) =>
    TableCellNode._(
      type: type,
      text: text ?? _i7.undefined,
      rowIndex: rowIndex,
      columnIndex: columnIndex,
      toString$: toString$,
      parent: parent ?? _i7.undefined,
      height: height,
      width: width,
      fills: fills ?? _i7.undefined,
      fillStyleId: fillStyleId ?? _i7.undefined,
      setFillStyleIdAsync: setFillStyleIdAsync == null
          ? null
          : _i5.allowInterop(setFillStyleIdAsync),
    );