fwStandardSqlServerAttributesFwExcelOptionsNullableListFromJson function
List<FwStandardSqlServerAttributesFwExcelOptions> ?
fwStandardSqlServerAttributesFwExcelOptionsNullableListFromJson(
- List? fwStandardSqlServerAttributesFwExcelOptions, [
- 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();
}