CustomContentLinks.fromJson constructor

CustomContentLinks.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory CustomContentLinks.fromJson(Map<String, Object?> json) {
  return CustomContentLinks(
    webui: json[r'webui'] as String?,
  );
}