LogtoConfig constructor Null safety

const LogtoConfig(
  1. {required String appId,
  2. required String endpoint,
  3. String? appSecret,
  4. List<String>? resources,
  5. List<String>? scopes}
)

Implementation

const LogtoConfig({
  required this.appId,
  required this.endpoint,
  this.appSecret,
  this.resources,
  this.scopes,
});