dartCoreObject property

String dartCoreObject
latefinal

The String name representing the Object type.

Implementation

late final String dartCoreObject = libraries
        .firstWhereOrNull((library) => library.name == 'dart:core')
        ?.classes
        .firstWhereOrNull((c) => c.name == 'Object')
        ?.linkedName ??
    'Object';