TableCell.fromJson constructor

TableCell.fromJson(
  1. Map json_
)

Implementation

TableCell.fromJson(core.Map json_)
    : this(
        v: json_.containsKey('v') ? json_['v'] : null,
      );