fwStandardSqlServerAttributesFwExcelOptionsExplodedListToJson function
String
fwStandardSqlServerAttributesFwExcelOptionsExplodedListToJson(
- List<
FwStandardSqlServerAttributesFwExcelOptions> ? fwStandardSqlServerAttributesFwExcelOptions
Implementation
String fwStandardSqlServerAttributesFwExcelOptionsExplodedListToJson(
List<enums.FwStandardSqlServerAttributesFwExcelOptions>?
fwStandardSqlServerAttributesFwExcelOptions,
) {
return fwStandardSqlServerAttributesFwExcelOptions
?.map((e) => e.value!)
.join(',') ??
'';
}