init method
dynamic
init({})
Implementation
init(
{required String baseUrl, // Domain Inforamtion (URL with scheme)
required String consumerKey, // Key for Woo REST API from WordPress
required String consumerSecret // Secrete for Woo REST API from WordPress
}) {
this.consumerKey = consumerKey;
this. consumerSecret = consumerSecret;
this. baseUrl = '$baseUrl/wp-json/wc/v3/';
}