Thumbor constructor

Thumbor({
  1. required String host,
  2. String? key,
})

Implementation

Thumbor({
  required this.host,
  this.key,
}) {
  if (host.isEmpty) {
    throw ArgumentError('Host may not be empty');
  }
}