fromJson static method

ContactInterests fromJson(
  1. dynamic wrapped
)
override

Implementation

static ContactInterests fromJson(wrapped) => wrapped is ContactInterests
    ? wrapped
    : ContactInterests(wrapped as Map<String, dynamic>, update: true);