fromJson static method

SendResponse fromJson(
  1. dynamic wrapped
)
override

Implementation

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