fromJson static method

ContactInterestsList fromJson(
  1. dynamic wrapped
)
override

Implementation

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