table property

String? table

Implementation

String? get table => attrs['table'];
void table=(String? v)

Implementation

set table(String? v) => v == null ? attrs.remove('table') : attrs['table'] = v;