customBodyParams property

Map<String, String>? get customBodyParams

Implementation

Map<String, String>? get customBodyParams {
  if (bodyType == MessageType.CUSTOM) {
    return (body as CustomMessageBody).params;
  }
  return null;
}