get method
Implementation
IconTemplate get({required int size, required String name, String? location, String? suffix}) {
location = location ?? defaultLocation;
suffix = suffix ?? defaultSuffix;
return IconTemplate(size: size, baseName: name, suffix: suffix, location: location);
}