toJson method
Creates Map
from Class Object
Implementation
Map<String, dynamic> toJson() => {
'prefix': prefix,
'items': items
.map((StorageEntryMetadataV14 value) => value.toJson())
.toList(growable: false),
};