ifExistTableProperty function

bool ifExistTableProperty(
  1. DartObject obj,
  2. String name
)

Check if the table propery exist from dartObject

Implementation

bool ifExistTableProperty(DartObject obj, String name) =>
    obj.getField(name).toString().contains('(null)') == false;