Client constructor

Client({
  1. String endPoint = 'https://appwrite.io/v1',
  2. bool selfSigned = false,
  3. Client? http,
})

Implementation

factory Client(
        {String endPoint = 'https://appwrite.io/v1',
        bool selfSigned = false,
        req.Client? http}) =>
    createClient(endPoint: endPoint, selfSigned: selfSigned, http: http);