fetch method

Implementation

Future<NubrickRemoteConfigVariant> fetch() async {
  var phase = await NubrickFlutterPlatform.instance
      .connectRemoteConfig(id, _channelId);
  return NubrickRemoteConfigVariant._(
      _channelId, phase ?? RemoteConfigPhase.failed);
}