fromJson static method

SendResponseItem fromJson(
  1. dynamic wrapped
)
override

Implementation

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