getPermissionTypeIconPath method

String getPermissionTypeIconPath(
  1. String type
)

Implementation

String getPermissionTypeIconPath(String type) {
  String iconPath = "assets/images/common/permission_default_icon";
  if (type != "") {
    iconPath = type;
  }
  return iconPath;
}