fwStandardSqlServerAttributesFwExcelOptionsListToJson function
List<String>
fwStandardSqlServerAttributesFwExcelOptionsListToJson(
- List<
FwStandardSqlServerAttributesFwExcelOptions> ? fwStandardSqlServerAttributesFwExcelOptions
Implementation
List<String> fwStandardSqlServerAttributesFwExcelOptionsListToJson(
List<enums.FwStandardSqlServerAttributesFwExcelOptions>?
fwStandardSqlServerAttributesFwExcelOptions,
) {
if (fwStandardSqlServerAttributesFwExcelOptions == null) {
return [];
}
return fwStandardSqlServerAttributesFwExcelOptions
.map((e) => e.value!)
.toList();
}