fromProto static method

MsgOfflinePushModel fromProto(
  1. MsgData_OfflinePush offlinePush
)

Implementation

static MsgOfflinePushModel fromProto(MsgData_OfflinePush offlinePush) {
  return MsgOfflinePushModel(
    title: offlinePush.title,
    content: offlinePush.content,
    payload: offlinePush.payload,
  );
}