propertyContent abstract method

dynamic propertyContent({
  1. required String property,
  2. required String content,
})

Definition of property meta tag attribute If you do not found meta property you want just use metaProperty Definition of content meta tag attribute The value is used for other property meta not listed in attributes by metaPropertyContent Add web mata data of other meta property with content

Implementation

propertyContent(
    {
    /// Definition of [property] meta tag attribute
    required String property,

    /// Definition of [content] meta tag attribute
    required String content});