CustomFieldContextDefaultValueMultipleGroupPicker.fromJson constructor
CustomFieldContextDefaultValueMultipleGroupPicker.fromJson(
- Map<String, Object?> json
)
Implementation
factory CustomFieldContextDefaultValueMultipleGroupPicker.fromJson(
Map<String, Object?> json) {
return CustomFieldContextDefaultValueMultipleGroupPicker(
contextId: json[r'contextId'] as String? ?? '',
groupIds: (json[r'groupIds'] as List<Object?>?)
?.map((i) => i as String? ?? '')
.toList() ??
[],
type: json[r'type'] as String? ?? '',
);
}