fwStandardSqlServerAttributesFwExcelOptionsExplodedListToJson function

String fwStandardSqlServerAttributesFwExcelOptionsExplodedListToJson(
  1. List<FwStandardSqlServerAttributesFwExcelOptions>? fwStandardSqlServerAttributesFwExcelOptions
)

Implementation

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