fwStandardSqlServerAttributesFwExcelOptionsListToJson function

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

Implementation

List<String> fwStandardSqlServerAttributesFwExcelOptionsListToJson(
  List<enums.FwStandardSqlServerAttributesFwExcelOptions>?
  fwStandardSqlServerAttributesFwExcelOptions,
) {
  if (fwStandardSqlServerAttributesFwExcelOptions == null) {
    return [];
  }

  return fwStandardSqlServerAttributesFwExcelOptions
      .map((e) => e.value!)
      .toList();
}