GiftJson.fromMessage constructor

GiftJson.fromMessage(
  1. GiftMessage message
)

Implementation

factory GiftJson.fromMessage(GiftMessage message) {
  return GiftJson(
    data: message,
    platform: Constants.imCustomMessageValuePlatform,
    version: Constants.imCustomMessageValueVersion,
    businessID: Constants.imCustomMessageValueBusinessIdGift,
  );
}