CustomFieldContextDefaultValueForgeDateTimeField.fromJson constructor
CustomFieldContextDefaultValueForgeDateTimeField.fromJson(
- Map<String, Object?> json
)
Implementation
factory CustomFieldContextDefaultValueForgeDateTimeField.fromJson(
Map<String, Object?> json) {
return CustomFieldContextDefaultValueForgeDateTimeField(
contextId: json[r'contextId'] as String? ?? '',
dateTime: json[r'dateTime'] as String?,
type: json[r'type'] as String? ?? '',
useCurrent: json[r'useCurrent'] as bool? ?? false,
);
}