toFormInitStateCodeTable method

String toFormInitStateCodeTable(
  1. SqfEntityTableBase table
)

Implementation

String toFormInitStateCodeTable(SqfEntityTableBase table) {
  // print('toFormWidgetsCode begin 4: tableName:${table.tableName}');
  final retVal = StringBuffer();
  for (final field in table.fields!) {
    if (field is SqfEntityFieldRelationshipBase) {
    } else {
      retVal.writeln(toFormInitStateCodeField(field));
    }
  }
  return retVal.toString();
}