collectReferences method

Future<List<ModelReference>> collectReferences({
  1. String? appId,
})

Implementation

Future<List<ModelReference>> collectReferences({String? appId}) async {
  List<ModelReference> referencesCollector = [];
  if (color != null) {
    referencesCollector.addAll(await color!.collectReferences(appId: appId));
  }
  return referencesCollector;
}