fromValue static method

ConsentStatus fromValue(
  1. int value,
  2. bool isAndroid
)

Returns the consent status associated with the specified value.

Implementation

static ConsentStatus fromValue(int value, bool isAndroid) => values.firstWhere((status) => (isAndroid ? status.androidValue : status.iosValue) == value);