fwStandardSqlServerAttributesFwExcelOptionsNullableListFromJson function

List<FwStandardSqlServerAttributesFwExcelOptions>? fwStandardSqlServerAttributesFwExcelOptionsNullableListFromJson(
  1. List? fwStandardSqlServerAttributesFwExcelOptions, [
  2. List<FwStandardSqlServerAttributesFwExcelOptions>? defaultValue
])

Implementation

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

  return fwStandardSqlServerAttributesFwExcelOptions
      .map(
        (e) =>
            fwStandardSqlServerAttributesFwExcelOptionsFromJson(e.toString()),
      )
      .toList();
}