get method

IconTemplate get({
  1. required int size,
  2. required String name,
  3. String? location,
  4. String? suffix,
})

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);
}