frame static method

String frame(
  1. String imageUrl
)

Implementation

static String frame(String imageUrl) {
  if (imageUrl.isEmpty) {
    throw ArgumentError('Image URL must not be blank.');
  }
  return '$_filterFrame($imageUrl)';
}