getBackground method

BackgroundDefinition? getBackground(
  1. String id
)

Implementation

BackgroundDefinition? getBackground(String id) {
  final data = getAsset('$kPackBackgroundsPath/$id.json');
  if (data == null) return null;
  final content = utf8.decode(data);
  return BackgroundDefinitionMapper.fromJson(content);
}