value property

String value

Returns the value of the ANGEL_ENV variable; defaults to 'development'.

Implementation

String get value =>
    (_customValue ?? Platform.environment['ANGEL_ENV'] ?? 'development')
        .toLowerCase();