listCustomers method

Future<Map<String, dynamic>> listCustomers({
  1. String? email,
  2. int? limit,
})

List all customers

Implementation

Future<Map<String, dynamic>> listCustomers({String? email, int? limit}) {
  throw UnimplementedError('listCustomers() has not been implemented.');
}