getConf method

Future getConf(
  1. String url
)

Get KeyCloak Realm Configuration

Implementation

Future getConf(String url) async {
  final response = await Dio().get(url);
  return response.data;
}