RemoteConfigDefaultValue constructor

const RemoteConfigDefaultValue({
  1. bool? useInAppDefault,
  2. String? value,
})

Implementation

const RemoteConfigDefaultValue({this.useInAppDefault, this.value})
  : assert(
      useInAppDefault == null || value == null,
      'RemoteConfigDefaultValue: pass at most one of `useInAppDefault` '
      'or `value` -- the schema rejects both being set.',
    );