Client constructor

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

Initializes a Client.

Implementation

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