info property

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

AffiliateProgramInfo get info {
  try {
    if (rawData["info"] is Map == false) {
      return AffiliateProgramInfo({});
    }
    return AffiliateProgramInfo(rawData["info"] as Map);
  } catch (e) {
    return AffiliateProgramInfo({});
  }
}
set info (AffiliateProgramInfo value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set info(AffiliateProgramInfo value) {
  rawData["info"] = value.toJson();
}