GetSocialAction constructor

GetSocialAction(
  1. String type,
  2. Map<String, String> data
)

Create new instance

type Type of Action data Action data

Implementation

GetSocialAction(String type, Map<String, String> data) {
  this.type = type;
  this.data = data;
}