Client constructor

Client({
  1. String endPoint = 'https://HOSTNAME/v1',
  2. bool selfSigned = false,
})

Implementation

factory Client(
        {String endPoint = 'https://HOSTNAME/v1', bool selfSigned = false}) =>
    createClient(endPoint: endPoint, selfSigned: selfSigned);