supportedCreator property

String supportedCreator

get currently supported creator by the profile. it is an empty string if no creator is supported by the profile.

Implementation

String get supportedCreator {
  confirmInitialized();

  if (stats["mtx_affiliate"] == null) {
    return "";
  }

  return stats["mtx_affiliate"];
}