getOption method

Map<String, dynamic> getOption()

Implementation

Map<String, dynamic> getOption() {
  Map<String, dynamic> options = {
    "q": "${this.query}",
    "part": "snippet",
    "maxResults": "${this.maxResults}",
    "key": "${this.key}",
    "type": "${this.type}"
  };
  return options;
}